StripeCard constructor

StripeCard({
  1. required String? number,
  2. required String? cvc,
  3. required int? expMonth,
  4. required 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. String? brand,
  16. String? funding,
  17. String? fingerprint,
  18. String? country,
  19. String? currency,
  20. String? customerId,
  21. String? cvcCheck,
  22. String? id,
  23. List<String>? loggingTokens,
  24. String? tokenizationMethod,
})

Implementation

StripeCard({
  required this.number,
  required this.cvc,
  required this.expMonth,
  required this.expYear,
  this.name,
  this.addressLine1,
  this.addressLine1Check,
  this.addressLine2,
  this.addressCity,
  this.addressState,
  this.addressZip,
  this.addressZipCheck,
  this.addressCountry,
  this.last4,
  String? brand,
  this.funding,
  this.fingerprint,
  this.country,
  this.currency,
  this.customerId,
  this.cvcCheck,
  this.id,
  this.loggingTokens,
  this.tokenizationMethod,
}) : _brand = brand;