clearChat method

Future<void> clearChat(
  1. ChatId id, [
  2. ChatItemId? untilId
])

Clears an existing Chat (hides all its ChatItems) for the authenticated MyUser until the specified ChatItem inclusively.

Clears all ChatItems in the specified Chat, if untilId if not provided.

Implementation

Future<void> clearChat(ChatId id, [ChatItemId? untilId]) async {
  Log.debug('clearChat($id, $untilId)', '$runtimeType');
  await _chatRepository.clearChat(id, untilId);
}