resume method
Resumes JavaScript execution.
terminateOnResume
Set to true to terminate execution upon resuming execution. In contrast
to Runtime.terminateExecution, this will allows to execute further
JavaScript (i.e. via evaluation) until execution of the paused code
is actually resumed, at which point termination is triggered.
If execution is currently not paused, this parameter has no effect.
Implementation
Future<void> resume({bool? terminateOnResume}) async {
await _client.send('Debugger.resume', {
if (terminateOnResume != null) 'terminateOnResume': terminateOnResume,
});
}