textContent property

String? textContent

Implementation

String? get textContent => js_util.getProperty(this, 'textContent');
void textContent=(String? newValue)

Implementation

set textContent(String? newValue) {
  js_util.setProperty(this, 'textContent', newValue);
}