setSkipAllPauses method
Makes page not interrupt on any pauses (breakpoint, exception, dom exception etc).
skip
New value for skip pauses state.
Implementation
Future<void> setSkipAllPauses(bool skip) async {
await _client.send('Debugger.setSkipAllPauses', {
'skip': skip,
});
}