unfavoriteChat method

Future<void> unfavoriteChat(
  1. ChatId id
)

Removes the specified Chat identified by its id from the favorites.

Implementation

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