innerXml property

String innerXml

Return the markup representing the child nodes of this node.

Implementation

String get innerXml => children.map((node) => node.toXmlString()).join();
void innerXml=(String value)

Replaces the markup representing the child nodes of this node.

Implementation

set innerXml(String value) => children
  ..clear()
  ..add(XmlDocumentFragment.parse(value));