untrackIndexedDBForStorageKey method

Future<void> untrackIndexedDBForStorageKey(
  1. String storageKey
)

Unregisters storage key from receiving notifications for IndexedDB. storageKey Storage key.

Implementation

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