internalLinkTypePassportDataRequest property
The link contains a request of Telegram passport data. Call getPassportAuthorizationForm with the given parameters to process the link if the link was received from outside of the application; otherwise, ignore it
Implementation
InternalLinkTypePassportDataRequest? get internalLinkTypePassportDataRequest {
if (this is InternalLinkTypePassportDataRequest) {
return this as InternalLinkTypePassportDataRequest;
}
return null;
}