checksums method

Future<List<String>> checksums()

Returns the checksums stored in the database.

Implementation

Future<List<String>> checksums() async {
  final result = await safe<List<String>?>((db) async {
    final result = await db.select(db.cache).get();
    return result.map((e) => e.checksum).toList();
  });

  return result ?? [];
}