readAll method
Marks all the chats as read for the authenticated MyUser until their Chat.lastItems available.
Implementation
Future<void> readAll(List<ChatId>? ids) async {
Log.debug('readAll()', '$runtimeType');
await _chatRepository.readAll(ids);
}