PaymentValidateResponse.fromJson constructor

PaymentValidateResponse.fromJson(
  1. dynamic json
)

Implementation

PaymentValidateResponse.fromJson(dynamic json) {
  _gwTransactionId = json['gw_transaction_id'];
  _merchantOrderId = json['merchant_order_id'];
  _receivedAmount = json['received_amount'];
  _currency = json['currency'];
  _status = json['status'];
  _customerName = json['customer_name'];
  _customerMobileNumber = json['customer_mobile_number'];
  _at = json['at'];
}