CardInfoModel constructor

CardInfoModel({
  1. String? number,
  2. String? expiryDate,
  3. String? expiryMonth,
  4. String? cardholderName,
})

Constructor for creating a CardInfoModel instance.

Implementation

CardInfoModel({
  this.number,
  this.expiryDate,
  this.expiryMonth,
  this.cardholderName,
});