Hello all,
I'm using woocommerce rest api to login customers ect. but I am getting this error: _TypeError (type 'List<dynamic>' is not a subtype of type 'Map<String, dynamic>')
The Code is:
LoginResponseModel.fromJson(Map<String, dynamic> json) {
success = json['success'];
statusCode = json['statusCode'];
code = json['code'];
message = json['message'];
data = json['data'] != null ? new Data.fromJson(json['data']) : null;
error was in data = json['data'] != null ? new Data.fromJson(json['data']) : null;
please help thanks