PaymentMethodCardCardDetailsParams constructor

const PaymentMethodCardCardDetailsParams({
  1. String? cvc,
  2. required int expMonth,
  3. required int expYear,
  4. PaymentMethodNetworks? networks,
  5. required String number,
})

card_details_params

Implementation

const PaymentMethodCardCardDetailsParams({
  this.cvc,
  required this.expMonth,
  required this.expYear,
  this.networks,
  required this.number,
});