text property - Node class - dart:html library (original) (raw)
- @JSName('textContent')
String? gettext
All text within this node and its descendants.
Other resources
- Node.textContentfrom MDN.
Implementation
@JSName('textContent')
/**
* All text within this node and its descendants.
*
* ## Other resources
*
* * [Node.textContent](https://developer.mozilla.org/en-US/docs/Web/API/Node.textContent)
* from MDN.
*/
String? get text native;
- @JSName('textContent')
settext (String? value)
Implementation
@JSName('textContent')
set text(String? value) native;