disable method

Future<void> disable()

Disables storage tracking, prevents storage events from being sent to the client.

Implementation

Future<void> disable() async {
  await _client.send('DOMStorage.disable');
}