nodesView property

List<DOMNode> get nodesView

Same as nodes but returns an unmodifiable List.

Implementation

List<DOMNode> get nodesView =>
    UnmodifiableListView(isNotEmptyContent ? _content! : []);