createChatContact method

Future<void> createChatContact(
  1. User user
)

Adds the specified user to the current MyUser's address book.

Implementation

Future<void> createChatContact(User user) {
  Log.debug('createChatContact($user)', '$runtimeType');

  return _contactRepository.createChatContact(
    user.name ?? UserName(user.num.toString()),
    user.id,
  );
}