favoriteContact method
Marks the user as favorited.
Implementation
Future<void> favoriteContact() async {
try {
if (contactId != null) {
await _contactService.favoriteChatContact(contactId!);
}
} on FavoriteChatContactException catch (e) {
MessagePopup.error(e);
} catch (e) {
MessagePopup.error(e);
rethrow;
}
}