PayResult constructor

PayResult({
  1. String? trackingId,
  2. String? paymentId,
  3. String? desc,
  4. String? merchantTransactionId,
  5. String? status,
  6. String? checksum,
  7. String? descriptor,
  8. String? token,
  9. String? registrationId,
  10. String? firstName,
  11. String? lastName,
  12. String? currency,
  13. String? amount,
  14. String? tmplCurrency,
  15. String? tmplAmount,
  16. String? timestamp,
  17. String? resultCode,
  18. String? resultDescription,
  19. String? cardBin,
  20. String? cardLast4Digits,
  21. String? custEmail,
  22. String? paymentMode,
  23. String? paymentBrand,
})

Implementation

PayResult({
  this.trackingId,
  this.paymentId,
  this.desc,
  this.merchantTransactionId,
  this.status,
  this.checksum,
  this.descriptor,
  this.token,
  this.registrationId,
  this.firstName,
  this.lastName,
  this.currency,
  this.amount,
  this.tmplCurrency,
  this.tmplAmount,
  this.timestamp,
  this.resultCode,
  this.resultDescription,
  this.cardBin,
  this.cardLast4Digits,
  this.custEmail,
  this.paymentMode,
  this.paymentBrand,
});