PaymentInfoModel constructor

PaymentInfoModel({
  1. String? number,
  2. String? verificationValue,
  3. String? firstName,
  4. String? lastName,
  5. String? month,
  6. String? year,
})

Implementation

PaymentInfoModel({
  this.number,
  this.verificationValue,
  this.firstName,
  this.lastName,
  this.month,
  this.year,
});