refresh method
Triggers a notification without changing the value.
This also triggers middleware hooks to ensure mutations are tracked.
Implementation
@override
void refresh() {
_isDirty = true;
if (_isActive && !_isComputing) {
_ensureFresh();
}
}