unfavoriteChat method

Future<void> unfavoriteChat()

Removes the chat from the favorites.

Implementation

Future<void> unfavoriteChat() async {
  try {
    await _chatService.unfavoriteChat(chat?.id ?? id);
  } on UnfavoriteChatException catch (e) {
    MessagePopup.error(e);
  } catch (e) {
    MessagePopup.error(e);
    rethrow;
  }
}