removeChatMember method

Future<void> removeChatMember(
  1. ChatId chatId,
  2. UserId userId
)

Removes an User from a Chat-group by the authority of the authenticated MyUser.

Implementation

Future<void> removeChatMember(ChatId chatId, UserId userId) async {
  Log.debug('removeChatMember($chatId, $userId)', '$runtimeType');

  RxChat? chat;

  if (userId == me) {
    chat = chats[chatId];
    if (router.route.startsWith('${Routes.chats}/$chatId')) {
      router.home();
    }
  }

  try {
    await _chatRepository.removeChatMember(chatId, userId);
  } catch (_) {
    if (chat != null) {
      chats[chatId] = chat;
    }

    rethrow;
  }
}