isComplete static method

Future<bool> isComplete(
  1. String url
)

Check if URL is fully cached.

Implementation

static Future<bool> isComplete(String url) async {
  await _ensureLoaded();
  return _cache[url]?.isComplete ?? false;
}