value property
String
get
value
Gets the current value as a string.
Implementation
String get value => _value.join();
set
value
(String s)
Sets the value of the text input.
Implementation
set value(String s) {
setText(s);
}