clearChat method
- ChatId id, [
- 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);
}