accept method
Implementation
@override
void accept(NodeVisitor visitor) {
if (visitor.visitElementBefore(this)) {
if (children != null) {
for (final child in children!) {
child.accept(visitor);
}
}
visitor.visitElementAfter(this);
}
}