setValueWithNoNotify method

void setValueWithNoNotify(
  1. T newValue
)

Implementation

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