unfavoriteChat method
Removes the chat from the favorites.
Implementation
Future<void> unfavoriteChat() async {
try {
await _chatService.unfavoriteChat(chatId);
} on UnfavoriteChatException catch (e) {
MessagePopup.error(e);
} catch (e) {
MessagePopup.error(e);
rethrow;
}
}