Card constructor

Card({
  1. String? updated,
  2. String? entityType,
  3. String? entityId,
  4. String? created,
  5. String? name,
  6. String? id,
  7. Address? address,
  8. CardTypeEnum? cardType,
  9. String? commercialCardCode,
  10. String? cvc,
  11. String? expMonth,
  12. String? expYear,
  13. bool? isBusiness,
  14. bool? isDefault,
  15. bool? isLevel3Eligible,
  16. String? number,
  17. ZeroDollarVerification? zeroDollarVerification,
})

Implementation

Card({
  this.updated, this.entityType, this.entityId, this.created,
  this.name, this.id, this.address, this.cardType, this.commercialCardCode,
  this.cvc, this.expMonth, this.expYear, this.isBusiness, this.isDefault,
  this.isLevel3Eligible, this.number, this.zeroDollarVerification
});