internalLinkTypeBotStart property
The link is a link to a chat with a Telegram bot. Call searchPublicChat with the given bot username, check that the user is a bot, show START button in the chat with the bot,
Implementation
InternalLinkTypeBotStart? get internalLinkTypeBotStart {
if (this is InternalLinkTypeBotStart) {
return this as InternalLinkTypeBotStart;
}
return null;
}