getAllCacheItems method

Future<List<CacheItem>> getAllCacheItems()

获取所有缓存项

Implementation

Future<List<CacheItem>> getAllCacheItems() async {
  return await select(cacheItems).get();
}