text property
Returns the content of this node as text.
Implementation
@override
String get text => _text;
set
text
(String value)
Implementation
set text(String value) {
_text = value;
_hasUnresolvedTemplate = DOMTemplate.possiblyATemplate(value);
}