PaymentMethodCard constructor

const PaymentMethodCard({
  1. required String brand,
  2. PaymentMethodCardChecks? checks,
  3. String? country,
  4. String? description,
  5. String? displayBrand,
  6. required int expMonth,
  7. required int expYear,
  8. String? fingerprint,
  9. required String funding,
  10. String? iin,
  11. String? issuer,
  12. required String last4,
  13. Networks? networks,
  14. PaymentMethodCardThreeDSecureUsage? threeDSecureUsage,
  15. PaymentMethodCardWallet? wallet,
})

payment_method_card

Implementation

const PaymentMethodCard({
  required this.brand,
  this.checks,
  this.country,
  this.description,
  this.displayBrand,
  required this.expMonth,
  required this.expYear,
  this.fingerprint,
  required this.funding,
  this.iin,
  this.issuer,
  required this.last4,
  this.networks,
  this.threeDSecureUsage,
  this.wallet,
});