Node constructor
Node(])
Implementation
Node(this.tagName,
[Map<String, dynamic> attributes = const {},
Iterable<Node> children = const []]) {
this..attributes.addAll(attributes)..children.addAll(children);
}