untrackCacheStorageForOrigin method

Future<void> untrackCacheStorageForOrigin(
  1. String origin
)

Unregisters origin from receiving notifications for cache storage. origin Security origin.

Implementation

Future<void> untrackCacheStorageForOrigin(String origin) async {
  await _client.send('Storage.untrackCacheStorageForOrigin', {
    'origin': origin,
  });
}