CardData constructor

CardData({
  1. String? id,
  2. int? bin,
  3. String? maskedCard,
  4. int? expiryMonth,
  5. int? expiryYear,
  6. String? nickname,
  7. String? brand,
  8. String? cardType,
  9. Customer? customer,
})

Implementation

CardData({
  this.id,
  this.bin,
  this.maskedCard,
  this.expiryMonth,
  this.expiryYear,
  this.nickname,
  this.brand,
  this.cardType,
  this.customer,
});