MFPaymentMethod.fromJson constructor
MFPaymentMethod.fromJson(
- Map<String, dynamic> json
)
Implementation
MFPaymentMethod.fromJson(Map<String, dynamic> json) {
paymentMethodId = json['PaymentMethodId'];
paymentMethodAr = json['PaymentMethodAr'];
paymentMethodEn = json['PaymentMethodEn'];
paymentMethodCode = json['PaymentMethodCode'];
isDirectPayment = json['IsDirectPayment'];
serviceCharge = json['ServiceCharge'];
totalAmount = json['TotalAmount'];
currencyIso = json['CurrencyIso'];
imageUrl = json['ImageUrl'];
isEmbeddedSupported = json['IsEmbeddedSupported'];
paymentCurrencyIso = json['PaymentCurrencyIso'];
}