ArrayNode constructor

ArrayNode([
  1. String type = 'Array',
  2. Location? loc,
  3. List<Node>? children
])

Implementation

ArrayNode([super.type = 'Array', super.loc, List<Node>? children])
    : children = children ?? <Node>[];