trackIndexedDBForOrigin method

Future<void> trackIndexedDBForOrigin(
  1. String origin
)

Registers origin to be notified when an update occurs to its IndexedDB. origin Security origin.

Implementation

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