value property
String
get
value
Implementation
String get value => _controller.text;
set
value
(String newValue)
Implementation
set value(String newValue) {
_controller.text = newValue;
if (mounted && !_isDisposed) {
setState(() {
_validationError = null;
});
}
widget.onChanged?.call(newValue);
}