pauseOnAsyncCall method
- @Deprecated('This command is deprecated')
- 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,
});
}