setAsyncCallStackDepth method

Future<WipResponse> setAsyncCallStackDepth(
  1. int maxDepth
)

Enables or disables async call stacks tracking.

maxDepth - Maximum depth of async call stacks. Setting to 0 will effectively disable collecting async call stacks (default).

Implementation

Future<WipResponse> setAsyncCallStackDepth(int maxDepth) {
  return sendCommand('Debugger.setAsyncCallStackDepth', params: {
    'maxDepth': maxDepth,
  });
}