Card constructor

Card({
  1. String? customerId,
  2. String? id,
  3. int? version,
  4. String? referenceId,
  5. String? merchantId,
  6. int? expYear,
  7. int? expMonth,
  8. CardType? cardType,
  9. Address? billingAddress,
  10. String? bin,
  11. CardBrand? cardBrand,
  12. String? cardholderName,
  13. bool? enabled,
  14. String? fingerprint,
  15. String? last4,
  16. CardPrepaidType? prepaidType,
})

Implementation

Card(
    {this.customerId,
    this.id,
    this.version,
    this.referenceId,
    this.merchantId,
    this.expYear,
    this.expMonth,
    this.cardType,
    this.billingAddress,
    this.bin,
    this.cardBrand,
    this.cardholderName,
    this.enabled,
    this.fingerprint,
    this.last4,
    this.prepaidType});