clearTopic method

void clearTopic(
  1. String topicId
)

Remove all cached data for a topic.

Implementation

void clearTopic(String topicId) {
  if (_db == null) return;
  _db!.execute('DELETE FROM local_chunks WHERE topic_id = ?', [topicId]);
}