visitChildrenForSemantics method

void visitChildrenForSemantics(
  1. RenderObjectVisitor visitor
)

Called when collecting the semantics of this node.

The implementation has to return the children in paint order skipping all children that are not semantically relevant (e.g. because they are invisible).

The default implementation mirrors the behavior of visitChildren (which is supposed to walk all the children).

Implementation

void visitChildrenForSemantics(RenderObjectVisitor visitor) {
  visitChildren(visitor);
}