CardTokenParams constructor

const CardTokenParams({
  1. @Default(TokenType.Card) TokenType type,
  2. String? name,
  3. Address? address,
  4. String? currency,
})

Implementation

const factory CardTokenParams({
  /// Type of token.
  @Default(TokenType.Card) TokenType type,

  /// Name of the card holder
  String? name,

  /// Additional address details
  Address? address,

  /// The three letter ISO 4217 code for the currency.
  String? currency,
}) = _CardTokenParams;