Card constructor

Card({
  1. required String number,
  2. required String exMonth,
  3. required String exYear,
  4. required String cvv,
})

Implementation

Card({
  required this.number,
  required this.exMonth,
  required this.exYear,
  required this.cvv,
});