CardPlaceholder constructor
- @JsonSerializable(explicitToJson: true)
CardPlaceholder(
{ - String? number,
- String? expiration,
- String? cvc,
- String? postalCode,
})
Implementation
@JsonSerializable(explicitToJson: true)
factory CardPlaceholder({
/// Localized placeholder for card number field.
String? number,
/// Localized placeholder for expiration field.
String? expiration,
/// Localized placeholder for cvc field.
String? cvc,
/// Localized placeholder for postal code field.
String? postalCode,
}) = _CardPlaceholderConstructor;