PaymentCard constructor

PaymentCard({
  1. CardType? type,
  2. String? number,
  3. String? name,
  4. int? month,
  5. int? year,
  6. int? cvv,
})

Implementation

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