getCache method

Future<CacheResponse?> getCache(
  1. String key
)

获取指定Key的缓存

Implementation

Future<CacheResponse?> getCache(String key) async {
  return await cacheOptions?.store?.get(key);
}