CardInfo constructor

const CardInfo({
  1. String? maskedCardNumber,
  2. String? cardHolderName,
  3. CardType? cardType,
  4. String? expirationMonth,
  5. String? expirationYear,
  6. EntryMode? entryMode,
  7. String? cardBrand,
})

Implementation

const CardInfo({
  this.maskedCardNumber,
  this.cardHolderName,
  this.cardType,
  this.expirationMonth,
  this.expirationYear,
  this.entryMode,
  this.cardBrand,
});