internalLinkTypeWebApp property

InternalLinkTypeWebApp? internalLinkTypeWebApp

The link is a link to a Web App. Call searchPublicChat with the given bot username, check that the user is a bot, then call searchWebApp with the received bot and the given web_app_short_name.

Implementation

InternalLinkTypeWebApp? get internalLinkTypeWebApp {
  if (this is InternalLinkTypeWebApp) {
    return this as InternalLinkTypeWebApp;
  }
  return null;
}