favoriteChat method

Future<void> favoriteChat()

Marks the chat as favorited.

Implementation

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