hideChat method

Future<void> hideChat()

Hides a Chat-dialog with the user.

Implementation

Future<void> hideChat() async {
  final ChatId? dialog = user?.user.value.dialog;

  if (dialog != null) {
    try {
      await _chatService.hideChat(dialog);
    } on HideChatException catch (e) {
      MessagePopup.error(e);
    } on UnfavoriteChatException catch (e) {
      MessagePopup.error(e);
    } catch (e) {
      MessagePopup.error(e);
      rethrow;
    }
  }
}