internalLinkTypeBotStartInGroup property
The link is a link to a Telegram bot, which is supposed to be added to a group chat. Call searchPublicChat with the given bot username, check that the user is a bot and can be added to groups,
Implementation
InternalLinkTypeBotStartInGroup? get internalLinkTypeBotStartInGroup {
if (this is InternalLinkTypeBotStartInGroup) {
return this as InternalLinkTypeBotStartInGroup;
}
return null;
}