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, userId);
    if (userId == me && router.route.startsWith('${Routes.chats}/$chatId')) {
      router.home();
    }
  } on RemoveChatMemberException catch (e) {
    MessagePopup.error(e);
  } catch (e) {
    MessagePopup.error(e);
    rethrow;
  }
}