disable method

Future<void> disable()

Disables console domain, prevents further console messages from being reported to the client.

Implementation

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