pause method

Future<void> pause()

Stops on the next JavaScript statement.

Implementation

Future<void> pause() async {
  await _client.send('Debugger.pause');
}