untrackIndexedDBForOrigin method

Future<void> untrackIndexedDBForOrigin(
  1. String origin
)

Unregisters origin from receiving notifications for IndexedDB. origin Security origin.

Implementation

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