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