text property

String get text

The text around the cursor. This is only a subset of all text in the input field.

Implementation

String get text => _wrapped.text;
set text (String v)

Implementation

set text(String v) {
  _wrapped.text = v;
}