disable method

Future<void> disable()

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

Implementation

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