ElementNode constructor

ElementNode({
  1. String? tag,
  2. List<Attribute>? attributes,
  3. List<Node>? children,
})

Implementation

ElementNode({this.tag, this.attributes, this.children})
    : super(NodeType.ELEMENT,
          tag: tag, attributes: attributes, children: children);