value property

String get value

Implementation

String get value {
  return _value;
}
set value (String value)

Implementation

set value(String value) {
  _value = value;
  notifyListeners();
}