inlineQueryResultsButtonTypeStartBot property

InlineQueryResultsButtonTypeStartBot? inlineQueryResultsButtonTypeStartBot

Describes the button that opens a private chat with the bot and sends a start message to the bot with the given parameter

Implementation

InlineQueryResultsButtonTypeStartBot?
    get inlineQueryResultsButtonTypeStartBot {
  if (this is InlineQueryResultsButtonTypeStartBot) {
    return this as InlineQueryResultsButtonTypeStartBot;
  }
  return null;
}