renameChat method
Renames the specified Chat by the authority of authenticated MyUser.
Removes the Chat.name of the Chat if the provided name
is null
.
Only Chat-groups can be named or renamed.
Implementation
Future<void> renameChat(ChatId id, ChatName? name) async {
Log.debug('renameChat($id, $name)', '$runtimeType');
await _chatRepository.renameChat(id, name);
}