forceUpdate method

void forceUpdate(
  1. T val
)

Should only be called to update the value of a signal if checks for equality have already been made.

This is primarily used by the ValueSignal class to update the value since the reference is always the same.

Implementation

void forceUpdate(T val) {
  _updateValue(val);
}