pauseOnAsyncCall method

  1. @Deprecated('This command is deprecated')
Future<void> pauseOnAsyncCall(
  1. StackTraceId parentStackTraceId
)

parentStackTraceId Debugger will pause when async call with given stack trace is started.

Implementation

@Deprecated('This command is deprecated')
Future<void> pauseOnAsyncCall(runtime.StackTraceId parentStackTraceId) async {
  await _client.send('Debugger.pauseOnAsyncCall', {
    'parentStackTraceId': parentStackTraceId,
  });
}