SetBotInfoShortDescription constructor

const SetBotInfoShortDescription({
  1. required int botUserId,
  2. required String languageCode,
  3. required String shortDescription,
})

Sets the text shown on a bot's profile page and sent together with the link when users share the bot. Can be called only if userTypeBot.can_be_edited == true

Implementation

const SetBotInfoShortDescription({
  required this.botUserId,
  required this.languageCode,
  required this.shortDescription,
});