runIfWaitingForDebugger method

Future<void> runIfWaitingForDebugger()

Tells inspected instance to run if it was waiting for debugger to attach.

Implementation

Future<void> runIfWaitingForDebugger() async {
  await _client.send('Runtime.runIfWaitingForDebugger');
}