leaveGroup method
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;
}
}