declaration property

XmlDeclaration? declaration

Return the XmlDeclaration element, or null if not defined.

For example the following code prints <?xml version="1.0">:

var xml = '<?xml version="1.0">' ''; print(XmlDocument.parse(xml).doctypeElement);

Implementation

XmlDeclaration? get declaration {
  for (final node in children) {
    if (node is XmlDeclaration) {
      return node;
    }
  }
  return null;
}