PaymentValidateResponse constructor

PaymentValidateResponse({
  1. String? gwTransactionId,
  2. String? merchantOrderId,
  3. double? receivedAmount,
  4. String? currency,
  5. String? status,
  6. String? customerName,
  7. String? customerMobileNumber,
  8. String? at,
})

Implementation

PaymentValidateResponse({
    String? gwTransactionId,
    String? merchantOrderId,
    double? receivedAmount,
    String? currency,
    String? status,
    String? customerName,
    String? customerMobileNumber,
    String? at,}){
  _gwTransactionId = gwTransactionId;
  _merchantOrderId = merchantOrderId;
  _receivedAmount = receivedAmount;
  _currency = currency;
  _status = status;
  _customerName = customerName;
  _customerMobileNumber = customerMobileNumber;
  _at = at;
}