untrackCacheStorageForStorageKey method

Future<void> untrackCacheStorageForStorageKey(
  1. String storageKey
)

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