internalLinkTypeSideMenuBot property

InternalLinkTypeSideMenuBot? internalLinkTypeSideMenuBot

The link is a link to a bot, which can be installed to the side menu. Call searchPublicChat with the given bot username, check that the user is a bot and can be added to attachment menu.

Implementation

InternalLinkTypeSideMenuBot? get internalLinkTypeSideMenuBot {
  if (this is InternalLinkTypeSideMenuBot) {
    return this as InternalLinkTypeSideMenuBot;
  }
  return null;
}