addToContacts method

Future<void> addToContacts()

Adds the user to the contacts list of the authenticated MyUser.

Implementation

Future<void> addToContacts() async {
  if (contactId == null) {
    status.value = RxStatus.loadingMore();
    try {
      await _contactService.createChatContact(user!.user.value);
    } catch (e) {
      MessagePopup.error(e);
      rethrow;
    } finally {
      status.value = RxStatus.success();
    }
  }
}