PayoutCreateOptions constructor

const PayoutCreateOptions({
  1. required int amount,
  2. required String currency,
  3. String? description,
  4. String? destination,
  5. List<String>? expand,
  6. Map<String, String>? metadata,
  7. BankAccountAvailablePayoutMethodsItem? method,
  8. PayoutSourceType? sourceType,
  9. String? statementDescriptor,
})

Implementation

const PayoutCreateOptions({
  required this.amount,
  required this.currency,
  this.description,
  this.destination,
  this.expand,
  this.metadata,
  this.method,
  this.sourceType,
  this.statementDescriptor,
});