setValue method
Implementation
setValue(T newValue, {bool notify = true}) {
if (_value == newValue) {
return;
}
_value = newValue;
if(notify) notifyListeners();
}
setValue(T newValue, {bool notify = true}) {
if (_value == newValue) {
return;
}
_value = newValue;
if(notify) notifyListeners();
}