childNodes property

  1. @override
Iterable<AstNode> childNodes
override

All direct children of this node.

Implementation

@override
Iterable<AstNode> get childNodes {
  return [if (withClause != null) withClause!, base, ...additional];
}