ValidatePaymentModel.fromJson constructor
Implementation
ValidatePaymentModel.fromJson(Map<String, dynamic> json) {
responseCode = json['Response_Code'];
message = json['Message'];
transactionAmount = json['TransactionAmount'];
charges = json['Charges'];
gST = json['GST'];
totalPayable = json['TotalPayable'];
}