Node constructor

Node(
  1. String? type, {
  2. String? tag,
  3. String? text,
  4. List<Attribute>? attributes,
  5. List<Node>? children,
})

Implementation

Node(this.type, {this.tag, this.text, this.attributes, this.children});