MFDirectPaymentResponse.fromJson constructor
Implementation
MFDirectPaymentResponse.fromJson(Map<String, dynamic> json) {
mfPaymentStatusResponse = json['mfPaymentStatusResponse'] != null
? MFGetPaymentStatusResponse.fromJson(json['mfPaymentStatusResponse'])
: null;
cardInfoResponse = json['cardInfoResponse'] != null
? DirectPaymentResponse.fromJson(json['cardInfoResponse'])
: null;
}