fromJson method
Implementation
FPayPalErrorInfo fromJson(Map<String, dynamic> data) {
setMap(data);
code = getString("code");
orderId = getString("order_id");
message = getString("error_message");
return this;
}
FPayPalErrorInfo fromJson(Map<String, dynamic> data) {
setMap(data);
code = getString("code");
orderId = getString("order_id");
message = getString("error_message");
return this;
}