text property

  1. @Deprecated('Use [value] to access the textual content of this node, or ' '[innerText] to access the textual content of its descendants.')
String text
inherited

Returns the concatenated text of this node or its descendants, for text, CDATA, and comment nodes return the textual value of the node.

Implementation

@Deprecated('Use [value] to access the textual content of this node, or '
    '[innerText] to access the textual content of its descendants.')
String get text => XmlStringExtension(this as XmlNode).innerText;