CreditCard constructor

CreditCard({
  1. String? addressCity,
  2. String? addressCountry,
  3. String? addressLine1,
  4. String? addressLine2,
  5. String? addressState,
  6. String? addressZip,
  7. String? brand,
  8. String? cardId,
  9. String? currency,
  10. String? country,
  11. int? expMonth,
  12. int? expYear,
  13. String? number,
  14. String? token,
  15. String? cvc,
  16. String? funding,
  17. String? last4,
  18. String? name,
})

Implementation

CreditCard(
    {this.addressCity,
    this.addressCountry,
    this.addressLine1,
    this.addressLine2,
    this.addressState,
    this.addressZip,
    this.brand,
    this.cardId,
    this.currency,
    this.country,
    this.expMonth,
    this.expYear,
    this.number,
    this.token,
    this.cvc,
    this.funding,
    this.last4,
    this.name});