removeChatCallMember method
- UserId userId
Removes User identified by the provided userId
from the
_currentCall
.
Implementation
Future<void> removeChatCallMember(UserId userId) async {
try {
await _calls.removeChatCallMember(chatId.value, userId);
} on RemoveChatCallMemberException catch (e) {
MessagePopup.error(e);
} catch (e) {
MessagePopup.error(e);
rethrow;
}
}