PaymentCard constructor

PaymentCard({
  1. required String number,
  2. required String cvv,
  3. required String month,
  4. required String year,
})

Implementation

PaymentCard({
  required this.number,
  required this.cvv,
  required this.month,
  required this.year,
});