leaveGroup method

Future<void> leaveGroup()

Removes me from the chat.

Implementation

Future<void> leaveGroup() async {
  try {
    await _chatService.removeChatMember(id, me!);
    if (router.route.startsWith('${Routes.chats}/$id')) {
      router.home();
    }
  } on RemoveChatMemberException catch (e) {
    MessagePopup.error(e);
  } catch (e) {
    MessagePopup.error(e);
    rethrow;
  }
}