setBlackboxExecutionContexts method

Future<void> setBlackboxExecutionContexts(
  1. List<String> uniqueIds
)

Replace previous blackbox execution contexts with passed ones. Forces backend to skip stepping/pausing in scripts in these execution contexts. VM will try to leave blackboxed script by performing 'step in' several times, finally resorting to 'step out' if unsuccessful. uniqueIds Array of execution context unique ids for the debugger to ignore.

Implementation

Future<void> setBlackboxExecutionContexts(List<String> uniqueIds) async {
  await _client.send('Debugger.setBlackboxExecutionContexts', {
    'uniqueIds': [...uniqueIds],
  });
}