TreasuryTransactionFlowDetails constructor

const TreasuryTransactionFlowDetails({
  1. TreasuryCreditReversal? creditReversal,
  2. TreasuryDebitReversal? debitReversal,
  3. TreasuryInboundTransfer? inboundTransfer,
  4. IssuingAuthorization? issuingAuthorization,
  5. TreasuryOutboundPayment? outboundPayment,
  6. TreasuryOutboundTransfer? outboundTransfer,
  7. TreasuryReceivedCredit? receivedCredit,
  8. TreasuryReceivedDebit? receivedDebit,
  9. required TreasuryTransactionFlowDetailsType type,
})

Details of the flow that created the Transaction.

Implementation

const TreasuryTransactionFlowDetails({
  this.creditReversal,
  this.debitReversal,
  this.inboundTransfer,
  this.issuingAuthorization,
  this.outboundPayment,
  this.outboundTransfer,
  this.receivedCredit,
  this.receivedDebit,
  required this.type,
});