CardPlaceholder constructor

  1. @JsonSerializable(explicitToJson: true)
CardPlaceholder({
  1. String? number,
  2. String? expiration,
  3. String? cvc,
  4. 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;