unbanChatSenderChat method
Use this method to unban a previously banned channel chat in a supergroup or channel
The bot must be an administrator for this to work and must have the appropriate administrator rights.
Returns True on success.
Implementation
Future<bool> unbanChatSenderChat(dynamic chatId, int senderChatId) 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('unbanChatSenderChat');
var body = <String, dynamic>{
'chat_id': chatId,
'sender_chat_id': senderChatId,
};
return await HttpClient.httpPost(requestUrl, body: body);
}