StripeCard constructor
StripeCard({
- required String? number,
- required String? cvc,
- required int? expMonth,
- required int? expYear,
- String? name,
- String? addressLine1,
- String? addressLine1Check,
- String? addressLine2,
- String? addressCity,
- String? addressState,
- String? addressZip,
- String? addressZipCheck,
- String? addressCountry,
- String? last4,
- String? brand,
- String? funding,
- String? fingerprint,
- String? country,
- String? currency,
- String? customerId,
- String? cvcCheck,
- String? id,
- List<
String> ? loggingTokens, - 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;