removeChatMember method

Future<void> removeChatMember(
  1. UserId userId
)

Removes User identified by the provided userId from the chat.

Implementation

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