TreasuryOutboundTransferCreateOptions constructor

const TreasuryOutboundTransferCreateOptions({
  1. required int amount,
  2. required String currency,
  3. String? description,
  4. String? destinationPaymentMethod,
  5. OutboundPaymentDestinationPaymentMethodOptions? destinationPaymentMethodOptions,
  6. List<String>? expand,
  7. required String financialAccount,
  8. Map<String, String>? metadata,
  9. String? statementDescriptor,
})

Implementation

const TreasuryOutboundTransferCreateOptions({
  required this.amount,
  required this.currency,
  this.description,
  this.destinationPaymentMethod,
  this.destinationPaymentMethodOptions,
  this.expand,
  required this.financialAccount,
  this.metadata,
  this.statementDescriptor,
});