Card constructor

Card({
  1. String? cardToken,
  2. String? cardName,
  3. String? bankName,
  4. String? cardNumberFirstSix,
  5. String? cardNumberLastFour,
  6. String? cardHolderFullName,
  7. String? expMonth,
  8. String? expYear,
  9. String? cardType,
  10. String? creditType,
  11. String? productCategory,
  12. int? maxInstallmentNumber,
  13. String? cardCode,
})

Implementation

Card({
  this.cardToken,
  this.cardName,
  this.bankName,
  this.cardNumberFirstSix,
  this.cardNumberLastFour,
  this.cardHolderFullName,
  this.expMonth,
  this.expYear,
  this.cardType,
  this.creditType,
  this.productCategory,
  this.maxInstallmentNumber,
  this.cardCode,
});