FastRefundResponse constructor

FastRefundResponse({
  1. required TransactionStatus status,
  2. required String message,
  3. required String rawData,
  4. required double amount,
  5. String? sourceCode,
  6. String? cardType,
  7. String? accountNumber,
  8. String? tid,
  9. String? transactionId,
  10. String? aadeTransactionId,
})

Implementation

FastRefundResponse({
  required TransactionStatus status,
  required String message,
  required String rawData,
  required this.amount,
  this.sourceCode,
  this.cardType,
  this.accountNumber,
  this.tid,
  this.transactionId,
  this.aadeTransactionId,
}) : super(status: status, message: message, rawData: rawData);