notify method
Notify listeners with the current value
Useful if using objects that are out of your control. Consider wrapping the object in an RxObject if used frequently.
Child classes should implement a call to notifyWithValue
Implementation
@override
void notify() => notifyWithValue(_value);