Card constructor

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

@macro Reflects the current status of a card payment.

Implementation

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