value property

String get value

Gets the current input value.

Implementation

String get value => _value;
set value (String v)

Sets the current input value.

Implementation

set value(String v) {
  _value = v;
  _updateFilteredSuggestions();
}