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) {
final runes = _san(uni.codePoints(s));
final graphemes = uni.graphemes(String.fromCharCodes(runes)).toList();
final err = _validate(graphemes);
_setValueInternal(graphemes, err);
}