RefundResponse constructor

const RefundResponse({
  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 RefundResponse({
  super.isApproved,
  super.transactionStatus,
  super.approvedAmount,
  super.host,
  super.card,
  super.emv,
  super.errorMessage,
  super.signatureData,
  super.tpId,
  super.rawResponse,
});