innerXml property

  1. @override
String get innerXml
inherited

Return the markup representing the child nodes of this node.

Implementation

@override
String get innerXml => children.map((node) => node.toXmlString()).join();
  1. @override
set innerXml (String value)
inherited

Replaces the markup representing the child nodes of this node.

Implementation

@override
set innerXml(String value) => children
  ..clear()
  ..add(parseXmlDocumentFragment(value));