clearTopic method
- 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]);
}
Remove all cached data for a topic.
void clearTopic(String topicId) {
if (_db == null) return;
_db!.execute('DELETE FROM local_chunks WHERE topic_id = ?', [topicId]);
}