removeChatCallMember method

Future<void> removeChatCallMember(
  1. UserId userId
)

Removes the specified User from the _call.

Implementation

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