TransferCreateOptions constructor

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

Implementation

const TransferCreateOptions({
  this.amount,
  required this.currency,
  this.description,
  required this.destination,
  this.expand,
  this.metadata,
  this.sourceTransaction,
  this.sourceType,
  this.transferGroup,
});