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