removeFromContacts method
Removes the user from the contacts list of the authenticated MyUser.
Implementation
Future<void> removeFromContacts() async {
if (contactId != null) {
status.value = RxStatus.loadingMore();
try {
await _contactService.deleteContact(contactId!);
} catch (e) {
MessagePopup.error(e);
rethrow;
} finally {
status.value = RxStatus.success();
}
}
}