untrackCacheStorageForOrigin method
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,
});
}