TransactionResponse constructor

const TransactionResponse({
  1. bool isApproved = false,
  2. TransactionStatus transactionStatus = TransactionStatus.error,
  3. double? approvedAmount,
  4. HostResponse? host,
  5. CardInfo? card,
  6. EmvInfo? emv,
  7. String? errorMessage,
  8. String? signatureData,
  9. String? tpId,
  10. Map<String, dynamic>? rawResponse,
})

Implementation

const TransactionResponse({
  this.isApproved = false,
  this.transactionStatus = TransactionStatus.error,
  this.approvedAmount,
  this.host,
  this.card,
  this.emv,
  this.errorMessage,
  this.signatureData,
  this.tpId,
  this.rawResponse,
});