TransactionResult constructor

TransactionResult({
  1. bool isTransactionCanceled = true,
  2. TransactionResultStatus? transactionStatus,
  3. String? statusMessage,
  4. String? transactionId,
  5. String? orderId,
  6. String? paymentType,
})

Implementation

TransactionResult({
  this.isTransactionCanceled = true,
  this.transactionStatus,
  this.statusMessage,
  this.transactionId,
  this.orderId,
  this.paymentType,
});