Card constructor

Card({
  1. String? addressCity,
  2. String? addressCountry,
  3. String? addressLine1,
  4. AddressFieldCheck? addressLine1Check,
  5. String? addressLine2,
  6. String? addressState,
  7. String? addressZip,
  8. AddressFieldCheck? addressZipCheck,
  9. CardBrand? brand,
  10. String? id,
  11. String? object,
  12. String? country,
  13. String? currency,
  14. AddressFieldCheck? cvcCheck,
  15. String? dynamicLast4,
  16. int? expMonth,
  17. int? expYear,
  18. String? fingerprint,
  19. Funding? funding,
  20. String? last4,
  21. Map<String, dynamic>? metadata,
  22. String? name,
  23. TokenizationMethod? tokenizationMethod,
})

Implementation

Card(
    {this.addressCity,
    this.addressCountry,
    this.addressLine1,
    this.addressLine1Check,
    this.addressLine2,
    this.addressState,
    this.addressZip,
    this.addressZipCheck,
    this.brand,
    this.id,
    this.object,
    this.country,
    this.currency,
    this.cvcCheck,
    this.dynamicLast4,
    this.expMonth,
    this.expYear,
    this.fingerprint,
    this.funding,
    this.last4,
    this.metadata,
    this.name,
    this.tokenizationMethod});