fromJson static method
Returns a new NewPaymentModel instance and imports its values from
value
if it's a Map, null otherwise.
Implementation
// ignore: prefer_constructors_over_static_methods
static NewPaymentModel? fromJson(dynamic value) {
if (value is Map) {
final json = value.cast<String, dynamic>();
return NewPaymentModel(
customerId: mapValueOfType<int>(json, r'customerId'),
description: mapValueOfType<String>(json, r'description'),
date: mapDateTime(json, r'date', ''),
value: mapValueOfType<double>(json, r'value'),
paymentMethod: mapValueOfType<String>(json, r'paymentMethod'),
);
}
return null;
}