upsert method

Future<void> upsert(
  1. String checksum,
  2. String path
)

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,
    );
  });
}