trackIndexedDBForStorageKey method
Registers storage key to be notified when an update occurs to its IndexedDB.
storageKey
Storage key.
Implementation
Future<void> trackIndexedDBForStorageKey(String storageKey) async {
await _client.send('Storage.trackIndexedDBForStorageKey', {
'storageKey': storageKey,
});
}