clear method

Future<void> clear()

Deletes all the checksums and CacheInfo stored in the database.

Implementation

Future<void> clear() async {
  await safe((db) async {
    await db.delete(db.cache).go();
    await db.delete(db.cacheSummary).go();
  });
}