internalLinkTypeMessage property
The link is a link to a Telegram message or a forum topic. Call getMessageLinkInfo with the given URL to process the link
Implementation
InternalLinkTypeMessage? get internalLinkTypeMessage {
if (this is InternalLinkTypeMessage) {
return this as InternalLinkTypeMessage;
}
return null;
}