remove static method

Future<void> remove(
  1. String url
)

Remove metadata for URL.

Implementation

static Future<void> remove(String url) async {
  await _ensureLoaded();
  _cache.remove(url);
  await _persist();
}