setValueWithNoNotify method
void
setValueWithNoNotify(
- T newValue
Implementation
void setValueWithNoNotify(T newValue) {
if (_value == newValue) return;
_value = newValue;
}
void setValueWithNoNotify(T newValue) {
if (_value == newValue) return;
_value = newValue;
}