MFGetRecurringPaymentResponse.fromJson constructor
Implementation
MFGetRecurringPaymentResponse.fromJson(Map<String, dynamic> json) {
if (json['RecurringPayment'] != null) {
recurringPayment = <MFRecurringPayment>[];
json['RecurringPayment'].forEach((v) {
recurringPayment!.add(MFRecurringPayment.fromJson(v));
});
}
}