nodes property

  1. @override
Iterable<XmlNode> get nodes
inherited

Return a lazy Iterable of the direct descendants of this XmlNode (attributes, children) in document order.

Implementation

@override
Iterable<XmlNode> get nodes => [...attributes, ...children];