PaymentMethodCard constructor

PaymentMethodCard({
  1. required String brand,
  2. required String last4,
  3. required int expMonth,
  4. required int expYear,
  5. Wallet? wallet,
  6. String? displayBrand,
  7. String? fingerprint,
})

Implementation

PaymentMethodCard({
  required this.brand,
  required this.last4,
  required this.expMonth,
  required this.expYear,
  this.wallet,
  this.displayBrand,
  this.fingerprint,
});