StripeCard constructor

StripeCard({
  1. String? number,
  2. String? cvc,
  3. int? expMonth,
  4. int? expYear,
  5. String? name,
  6. String? addressLine1,
  7. String? addressLine1Check,
  8. String? addressLine2,
  9. String? addressCity,
  10. String? addressState,
  11. String? addressZip,
  12. String? addressZipCheck,
  13. String? addressCountry,
  14. String? last4,
  15. CardBrand brand = CardBrand.unknown,
  16. String? funding,
  17. String? fingerprint,
  18. String? country,
  19. String? currency,
  20. String? customerId,
  21. String? cvcCheck,
  22. String? id,
})

Implementation

StripeCard({
  this.number,
  this.cvc,
  this.expMonth,
  this.expYear,
  this.name,
  this.addressLine1,
  this.addressLine1Check,
  this.addressLine2,
  this.addressCity,
  this.addressState,
  this.addressZip,
  this.addressZipCheck,
  this.addressCountry,
  this.last4,
  CardBrand brand = CardBrand.unknown,
  this.funding,
  this.fingerprint,
  this.country,
  this.currency,
  this.customerId,
  this.cvcCheck,
  this.id,
});