DataDto constructor

DataDto({
  1. String? apTransactionId,
  2. String? merchantKey,
  3. String? amount,
  4. int? transactionStatus,
  5. String? orderId,
  6. String? customVar,
  7. String? customerPhone,
  8. String? merchantId,
  9. int? transactionType,
  10. String? cardType,
  11. String? currencyCode,
  12. String? txnMode,
  13. String? token,
  14. String? uid,
  15. String? bankResponseMsg,
  16. String? transactionPaymentStatus,
  17. String? customerEmail,
  18. String? chmod,
  19. String? transactionTime,
  20. String? risk,
  21. String? apSecureHash,
  22. String? customerName,
  23. String? surchargeAmount,
})

Implementation

DataDto({
  this.apTransactionId,
  this.merchantKey,
  this.amount,
  this.transactionStatus,
  this.orderId,
  this.customVar,
  this.customerPhone,
  this.merchantId,
  this.transactionType,
  this.cardType,
  this.currencyCode,
  this.txnMode,
  this.token,
  this.uid,
  this.bankResponseMsg,
  this.transactionPaymentStatus,
  this.customerEmail,
  this.chmod,
  this.transactionTime,
  this.risk,
  this.apSecureHash,
  this.customerName,
  this.surchargeAmount,
});