descendants property

  1. @override
Iterable<XmlNode> get descendants
inherited

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

Implementation

@override
Iterable<XmlNode> get descendants => XmlDescendantsIterable(this);