ObjectNode constructor

ObjectNode([
  1. String type = 'Object',
  2. Location? loc,
  3. List<PropertyNode>? children
])

Implementation

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