TokenData constructor
const
TokenData({})
Implementation
const factory TokenData({
/// Unique identifier of the token
required String id,
/// Timestamp when token was created
@JsonKey(name: 'created') required String created,
/// Type of the token
required TokenType type,
/// Whether or not the object exists in livemode
required bool livemode,
/// Bank account data
BankAccount? bankAccount,
/// Card data
CardData? card,
}) = _TokenData;