getAllObjects method
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),
);
}
Gets the list of all objects in the cache
@override
Future<List<CacheObject>> getAllObjects() async {
return CacheObject.fromMapList(
await db!.query(_tableCacheObject, columns: null),
);
}