unregister method
Deletes the checksums from the database.
Implementation
Future<void> unregister(List<String> checksums) async {
await safe((db) async {
final stmt = db.delete(db.cache)
..where((e) => e.checksum.isIn(checksums));
await stmt.go();
});
}