TransactionResponse constructor

const TransactionResponse({
  1. required Map<String, dynamic> raw,
  2. String? transactionId,
  3. String? originalTransactionId,
  4. String? tid,
  5. String? receipt,
  6. String? approvalCode,
  7. String? reference,
  8. String? transactionDate,
  9. String? cardNumber,
  10. String? cardExpiry,
  11. String? brand,
  12. String? cardIssuer,
  13. String? transactionType,
  14. String? currency,
  15. num? amount,
  16. num? tip,
  17. String? responseCode,
  18. String? responseText,
  19. Cvm? cvm,
  20. String? bin,
  21. String? statusCode,
  22. String? statusText,
  23. String? state,
  24. bool? cleared,
  25. String? source,
  26. String? approvalDate,
  27. String? actionCode,
  28. String? aid,
  29. String? vu,
})

Implementation

const TransactionResponse({
  required this.raw,
  this.transactionId,
  this.originalTransactionId,
  this.tid,
  this.receipt,
  this.approvalCode,
  this.reference,
  this.transactionDate,
  this.cardNumber,
  this.cardExpiry,
  this.brand,
  this.cardIssuer,
  this.transactionType,
  this.currency,
  this.amount,
  this.tip,
  this.responseCode,
  this.responseText,
  this.cvm,
  this.bin,
  this.statusCode,
  this.statusText,
  this.state,
  this.cleared,
  this.source,
  this.approvalDate,
  this.actionCode,
  this.aid,
  this.vu,
});