stepInto method

Future<void> stepInto({
  1. bool? breakOnAsyncCall,
  2. List<LocationRange>? skipList,
})

Steps into the function call. breakOnAsyncCall Debugger will pause on the execution of the first async task which was scheduled before next pause. skipList The skipList specifies location ranges that should be skipped on step into.

Implementation

Future<void> stepInto(
    {bool? breakOnAsyncCall, List<LocationRange>? skipList}) async {
  await _client.send('Debugger.stepInto', {
    if (breakOnAsyncCall != null) 'breakOnAsyncCall': breakOnAsyncCall,
    if (skipList != null) 'skipList': [...skipList],
  });
}