CardInfo constructor

CardInfo({
  1. required String bank,
  2. required String country,
  3. required String type,
  4. String? brand,
  5. String? cardArtUrl,
  6. String? fingerprint,
})

Implementation

CardInfo({
  required this.bank,
  required this.country,
  required this.type,
  this.brand,
  this.cardArtUrl,
  this.fingerprint,
});