nextLevel property

DartScope nextLevel

Implementation

DartScope get nextLevel {
  if (_id == values.length - 1) {
    // already in innermost level
    return this;
  }
  return values[_id + 1];
}