isCached method

Future<bool> isCached()

Check if this URL is cached

Implementation

Future<bool> isCached() async {
  return await _cacheManager.contains(url);
}