hideChatItem method

Future<void> hideChatItem(
  1. ChatItem item
)

Hides the specified ChatItem for the authenticated MyUser.

Implementation

Future<void> hideChatItem(ChatItem item) async {
  try {
    await _chatService.hideChatItem(item);
  } on HideChatItemException catch (e) {
    MessagePopup.error(e);
  } on UnfavoriteChatException catch (e) {
    MessagePopup.error(e);
  } catch (e) {
    MessagePopup.error(e);
    rethrow;
  }
}