TopupCreateOptions constructor

const TopupCreateOptions({
  1. required int amount,
  2. required String currency,
  3. String? description,
  4. List<String>? expand,
  5. Map<String, String>? metadata,
  6. String? source,
  7. String? statementDescriptor,
  8. String? transferGroup,
})

Implementation

const TopupCreateOptions({
  required this.amount,
  required this.currency,
  this.description,
  this.expand,
  this.metadata,
  this.source,
  this.statementDescriptor,
  this.transferGroup,
});