untrackCacheStorageForStorageKey method
Unregisters storage key from receiving notifications for cache storage.
storageKey
Storage key.
Implementation
Future<void> untrackCacheStorageForStorageKey(String storageKey) async {
await _client.send('Storage.untrackCacheStorageForStorageKey', {
'storageKey': storageKey,
});
}