MFGetRecurringPaymentResponse.fromJson constructor

MFGetRecurringPaymentResponse.fromJson(
  1. Map<String, dynamic> json
)

Implementation

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