hideChat method

Future<void> hideChat()

Hides the chat.

Implementation

Future<void> hideChat() async {
  try {
    await _chatService.hideChat(chatId);
  } on HideChatException catch (e) {
    MessagePopup.error(e);
  } on UnfavoriteChatException catch (e) {
    MessagePopup.error(e);
  } catch (e) {
    MessagePopup.error(e);
    rethrow;
  }
}