outerXml property

  1. @override
String get outerXml
inherited

Return the markup representing this node and all its child nodes.

Implementation

@override
String get outerXml => toXmlString();
  1. @override
set outerXml (String value)
inherited

Replaces the markup representing this node and all its child nodes.

Implementation

@override
set outerXml(String value) => replace(parseXmlDocumentFragment(value));