ObjectNode constructor
ObjectNode([
- String type = 'Object',
- Location? loc,
- List<
PropertyNode> ? children
Implementation
ObjectNode(
[String type = 'Object', Location? loc, List<PropertyNode>? children])
: children = children ?? <PropertyNode>[],
super(type, loc);