unfavoriteContact method
Removes the user from the favorites.
Implementation
Future<void> unfavoriteContact() async {
try {
if (contactId != null) {
await _contactService.unfavoriteChatContact(contactId!);
}
} on UnfavoriteChatContactException catch (e) {
MessagePopup.error(e);
} catch (e) {
MessagePopup.error(e);
rethrow;
}
}