Card constructor

Card({
  1. String? id,
  2. String? object,
  3. String? brand,
  4. String? cancellationReason,
  5. int? created,
  6. String? currency,
  7. String? cvc,
  8. int? expMonth,
  9. int? expYear,
  10. int? last4,
  11. bool? livemode,
  12. Map<String, dynamic>? metadata,
  13. String? number,
  14. String? replacedBy,
  15. String? replacementFor,
  16. String? replacementReason,
  17. Shipping? shipping,
  18. String? status,
  19. String? type,
  20. Cardholder? cardholder,
  21. SpendingControls? spendingControls,
  22. CardChecks? checks,
  23. dynamic generatedFrom,
  24. String? country,
  25. String? fingerprint,
  26. String? funding,
  27. ThreeDSecureUsage? threeDSecureUsage,
  28. dynamic wallet,
})

Implementation

Card(
    {this.id,
    this.object,
    this.brand,
    this.cancellationReason,
    this.created,
    this.currency,
    this.cvc,
    this.expMonth,
    this.expYear,
    this.last4,
    this.livemode,
    this.metadata,
    this.number,
    this.replacedBy,
    this.replacementFor,
    this.replacementReason,
    this.shipping,
    this.status,
    this.type,
    this.cardholder,
    this.spendingControls,
    this.checks,
    this.generatedFrom,
    this.country,
    this.fingerprint,
    this.funding,
    this.threeDSecureUsage,
    this.wallet});