CardData constructor

CardData({
  1. required String id,
  2. required String brand,
  3. required String last4,
  4. required String expYear,
  5. required String expMonth,
  6. required String name,
  7. String? addressZip,
})

Implementation

CardData({
  required this.id,
  required this.brand,
  required this.last4,
  required this.expYear,
  required this.expMonth,
  required this.name,
  this.addressZip,
});