changeContactName method
- ChatContactId id,
- 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);
}