nodeValue property

String? get nodeValue

Implementation

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

Implementation

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