getCacheItem method

Future<CacheItem?> getCacheItem(
  1. String key
)

获取缓存项(按key)

Implementation

Future<CacheItem?> getCacheItem(String key) async {
  return await findCache(key);
}