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