IssuingCardCreateOptions constructor

const IssuingCardCreateOptions({
  1. String? cardholder,
  2. required String currency,
  3. List<String>? expand,
  4. String? financialAccount,
  5. Map<String, String>? metadata,
  6. String? personalizationDesign,
  7. CardPin? pin,
  8. String? replacementFor,
  9. CardReplacementReason? replacementReason,
  10. String? secondLine,
  11. CardShipping? shipping,
  12. CardSpendingControls? spendingControls,
  13. BillingMeterStatus? status,
  14. required IssuingCardType type,
})

Implementation

const IssuingCardCreateOptions({
  this.cardholder,
  required this.currency,
  this.expand,
  this.financialAccount,
  this.metadata,
  this.personalizationDesign,
  this.pin,
  this.replacementFor,
  this.replacementReason,
  this.secondLine,
  this.shipping,
  this.spendingControls,
  this.status,
  required this.type,
});