InternalLinkTypeWebApp constructor

const InternalLinkTypeWebApp({
  1. required String botUsername,
  2. required String webAppShortName,
  3. required String startParameter,
  4. dynamic extra,
  5. int? clientId,
})

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.. Process received foundWebApp by showing a confirmation dialog if needed, then calling getWebAppLinkUrl and opening the returned URL

Implementation

const InternalLinkTypeWebApp({
  required this.botUsername,
  required this.webAppShortName,
  required this.startParameter,
  this.extra,
  this.clientId,
});