getAllObjects method

  1. @override
Future<List<CacheObject>> getAllObjects()
override

Gets the list of all objects in the cache

Implementation

@override
Future<List<CacheObject>> getAllObjects() async {
  return CacheObject.fromMapList(
    await db!.query(_tableCacheObject, columns: null),
  );
}