value property

String get value

Returns the current value of the textarea.

Implementation

String get value => _document.text;
set value (String v)

Sets the value of the textarea.

Implementation

set value(String v) {
  setText(v);
}