setMyCommands method
Future<bool>
setMyCommands(
- List<
BotCommand> commands, { - BotCommandScope? scope,
- String? languageCode,
Use this method to change the list of the bot's commands
See https://core.telegram.org/bots#commands for more details about bot commands.
Returns True on success.
Implementation
Future<bool> setMyCommands(List<BotCommand> commands,
{BotCommandScope? scope, String? languageCode}) async {
var requestUrl = _apiUri('setMyCommands');
var body = <String, dynamic>{
'commands': jsonEncode(commands),
'scope': scope == null ? null : jsonEncode(scope),
'language_code': languageCode,
};
return await HttpClient.httpPost(requestUrl, body: body);
}