removeChatCallMember method
Removes the specified User from the ChatCall of the specified Chat-group by authority of the authenticated MyUser.
If the specified User participates in the ChatCall from multiple devices simultaneously, then removes all the devices at once.
Implementation
Future<void> removeChatCallMember(ChatId chatId, UserId userId) async {
Log.debug('removeChatCallMember($chatId, $userId)', '$runtimeType');
if (_callsRepo.contains(chatId)) {
await _callsRepo.removeChatCallMember(chatId, userId);
}
}