removeChatCallMember method

Future<void> removeChatCallMember(
  1. UserId userId
)

Removes the specified User from a OngoingCall happening in the chat.

Implementation

Future<void> removeChatCallMember(UserId userId) async {
  try {
    await _callService.removeChatCallMember(chatId, userId);
  } on RemoveChatCallMemberException catch (e) {
    MessagePopup.error(e);
  } catch (e) {
    MessagePopup.error(e);
    rethrow;
  }
}