PassportData class abstract

Describes Telegram Passport data shared with the bot by the user.

Available extensions
Annotations
  • @freezed

Constructors

PassportData({@JsonKey.new(name: 'data') required List<EncryptedPassportElement> data, @JsonKey.new(name: 'credentials') required EncryptedCredentials credentials})
Constructs a PassportData object
const
factory
PassportData.fromJson(Map<String, dynamic> json)
Creates a PassportData object from JSON object
factory

Properties

copyWith → $PassportDataCopyWith<PassportData>
Create a copy of PassportData with the given fields replaced by the non-null parameter values.
no setterinherited
credentials EncryptedCredentials
Encrypted credentials required to decrypt the data
no setterinherited
data List<EncryptedPassportElement>
Array with information about documents and other Telegram Passport elements that was shared with the bot
no setterinherited
hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

map<TResult extends Object?>(TResult $default(_PassportData value)) → TResult

Available on PassportData, provided by the PassportDataPatterns extension

A switch-like method, using callbacks.
mapOrNull<TResult extends Object?>(TResult? $default(_PassportData value)?) → TResult?

Available on PassportData, provided by the PassportDataPatterns extension

A variant of map that fallback to returning null.
maybeMap<TResult extends Object?>(TResult $default(_PassportData value)?, {required TResult orElse()}) → TResult

Available on PassportData, provided by the PassportDataPatterns extension

A variant of map that fallback to returning orElse.
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() Map<String, dynamic>
Serializes this PassportData to a JSON map.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited