gotoFirstChild method

bool gotoFirstChild()

Implementation

bool gotoFirstChild() {
  _checkNotDisposed();
  final child = _node.child(0);
  if (child == null) return false;
  _stack.add((parent: _node, childIndex: 0));
  _node = child;
  return true;
}