CardInfo constructor

CardInfo({
  1. String? brand,
  2. String? fingerprint,
  3. String? firstSix,
  4. String? lastFour,
})

Implementation

CardInfo({
  this.brand,
  this.fingerprint,
  this.firstSix,
  this.lastFour,
});