text property
Returns the content of this node as text.
Implementation
@override
String get text => isNotEmptyTemplate ? template.toString() : '';
set
text
(String value)
Implementation
set text(String value) {
template = DOMTemplate.parse(value);
}