value property

String get value

Implementation

String get value => _state;
set value (String value)

Implementation

set value(String value) {
  if (_isDisposed) {
    return;
  }
  bool isNeedNotify=_state!=value;
  _state = value;
  if(isNeedNotify){
    notifyListeners();
  }
}