deleteEntry method

Future<void> deleteEntry(
  1. CacheId cacheId,
  2. String request
)

Deletes a cache entry. cacheId Id of cache where the entry will be deleted. request URL spec of the request.

Implementation

Future<void> deleteEntry(CacheId cacheId, String request) async {
  await _client.send('CacheStorage.deleteEntry', {
    'cacheId': cacheId,
    'request': request,
  });
}