updateAvatar method
override
Updates the avatar of the chat.
Intended to be used to update the StorageFile.relativeRef links.
Implementation
@override
Future<void> updateAvatar() async {
Log.debug('updateAvatar()', '$runtimeType($id)');
final ChatAvatar? avatar = await _chatRepository.avatar(id);
dto.value.avatar = avatar;
// TODO: Avatar should be updated by local subscription.
this.avatar.value = avatar;
await _driftChat.upsert(dto);
}