CardData constructor

CardData({
  1. required String pan,
  2. required String expDate,
  3. required String cvv,
  4. String? cardHolder,
})

Создает экземпляр данных кард

Implementation

CardData({
  required this.pan,
  required this.expDate,
  required this.cvv,
  this.cardHolder,
});