SetBotInfoDescription constructor

const SetBotInfoDescription({
  1. required int botUserId,
  2. required String languageCode,
  3. required String description,
})

Sets the text shown in the chat with a bot if the chat is empty. Can be called only if userTypeBot.can_be_edited == true

Implementation

const SetBotInfoDescription({
  required this.botUserId,
  required this.languageCode,
  required this.description,
});