deleteForumTopic method
Use this method to delete a forum topic along with all its messages in a forum supergroup chat.
The bot must be an administrator in the chat for this to work and must have the canDeleteMessages
administrator rights.
Returns True on success.
Implementation
Future<bool> deleteForumTopic(dynamic chatId, String messageThreadId) async {
if (chatId is! String && chatId is! int) {
return Future.error(TelegramException(
'Attribute \'chatId\' can only be either type of String or int'));
}
var requestUrl = _apiUri('deleteForumTopic');
var body = <String, dynamic>{
'chat_id': chatId,
'message_thread_id': messageThreadId,
};
return await HttpClient.httpPost(requestUrl, body: body);
}