ObjectNode constructor

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

Implementation

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