getCache method
获取指定Key的缓存
Implementation
Future<CacheResponse?> getCache(String key) async {
return await cacheOptions?.store?.get(key);
}
获取指定Key的缓存
Future<CacheResponse?> getCache(String key) async {
return await cacheOptions?.store?.get(key);
}