toXml method

String toXml()

Implementation

String toXml() {
  XmlDocument xmlDocument = XmlDocument();
  xmlDocument.children.add(ManifestNode.toXml(_root));
  return xmlDocument.toXmlString(pretty: true, indentAttribute: (e) => true);
}