popUntil method
Implementation
void popUntil(HarePage p) {
if (!_children.contains(p)) return;
while (_children.isNotEmpty && _children.last != p) {
_children.removeLast();
}
updateState();
}
void popUntil(HarePage p) {
if (!_children.contains(p)) return;
while (_children.isNotEmpty && _children.last != p) {
_children.removeLast();
}
updateState();
}