upsert method
Stores the provided path
at the checksum
in the database.
Implementation
Future<void> upsert(String checksum, String path) async {
_cache[checksum] = path;
await safe((db) async {
await db.downloads.insertOne(
DownloadRow(checksum: checksum, path: path),
mode: InsertMode.insertOrReplace,
);
});
}