TokenCardCreditCardSpecs constructor

const TokenCardCreditCardSpecs({
  1. String? addressCity,
  2. String? addressCountry,
  3. String? addressLine1,
  4. String? addressLine2,
  5. String? addressState,
  6. String? addressZip,
  7. String? currency,
  8. String? cvc,
  9. required String expMonth,
  10. required String expYear,
  11. String? name,
  12. PaymentMethodNetworks? networks,
  13. required String number,
})

credit_card_specs

Implementation

const TokenCardCreditCardSpecs({
  this.addressCity,
  this.addressCountry,
  this.addressLine1,
  this.addressLine2,
  this.addressState,
  this.addressZip,
  this.currency,
  this.cvc,
  required this.expMonth,
  required this.expYear,
  this.name,
  this.networks,
  required this.number,
});