innerText property

String get innerText

Implementation

String get innerText => js_util.getProperty(this, 'innerText');
set innerText (String newValue)

Implementation

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