InternalLinkTypeBotStart constructor

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

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,. and then call sendBotStartMessage with the given start parameter after the button is pressed

Implementation

const InternalLinkTypeBotStart({
  required this.botUsername,
  required this.startParameter,
  required this.autostart,
  this.extra,
  this.clientId,
});