stepOver method

Future<void> stepOver({
  1. List<LocationRange>? skipList,
})

Steps over the statement. skipList The skipList specifies location ranges that should be skipped on step over.

Implementation

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