hideChatItem method
- ChatItem item
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;
}
}