PaymentMethodCardPresent constructor

const PaymentMethodCardPresent({
  1. String? brand,
  2. String? cardholderName,
  3. String? country,
  4. String? description,
  5. required int expMonth,
  6. required int expYear,
  7. String? fingerprint,
  8. String? funding,
  9. String? iin,
  10. String? issuer,
  11. String? last4,
  12. Networks? networks,
  13. PaymentMethodCardPresentReadMethod? readMethod,
})

payment_method_card_present

Implementation

const PaymentMethodCardPresent({
  this.brand,
  this.cardholderName,
  this.country,
  this.description,
  required this.expMonth,
  required this.expYear,
  this.fingerprint,
  this.funding,
  this.iin,
  this.issuer,
  this.last4,
  this.networks,
  this.readMethod,
});