changeContactName method

Future<void> changeContactName(
  1. ChatContactId id,
  2. UserName name
)

Updates name of the specified ChatContact in the authenticated MyUser's address book.

Implementation

Future<void> changeContactName(ChatContactId id, UserName name) async {
  Log.debug('changeContactName($id, $name)', '$runtimeType');
  await _contactRepository.changeContactName(id, name);
}