readAll method

Future<void> readAll(
  1. List<ChatId>? ids
)

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);
}