XmlElementSyntheticImpl constructor
XmlElementSyntheticImpl(])
Implementation
XmlElementSyntheticImpl(
this.name, [
Iterable<XmlAttribute> attributesIterable = const [],
Iterable<XmlNode> childrenIterable = const [],
this.isSelfClosing = true,
]) {
name.attachParent(this);
attributes.addAll(attributesIterable);
children.addAll(childrenIterable);
}