value property

String get value

Implementation

String get value => _controller?.text.trim() ?? "";
set value (String newValue)

Implementation

set value(String newValue) {
  _controller?.text = newValue;
}