pop method

void pop()

Pop back to the previous level.

Does nothing when already at root.

Implementation

void pop() {
  if (_disposed) return;
  if (!canPop) return;
  value = DrillDownState(
    stack: value.stack.sublist(0, value.stack.length - 1),
  );
}