recompute method
void
recompute()
Call the computed function and update the value
Implementation
void recompute() {
value;
_previousValue = _value;
_value = _fn();
_flags |= _OUTDATED | _NOTIFIED;
_notifyAllTargets();
}