value property
Reactive primitives do not expose their value getter since all methods are available on the RxPrimitive
Implementation
@override
@protected
T get value => super.value;
set
value
(T value)
inherited
Set the current value
Will notify listeners if the value has changed
Implementation
set value(T value) {
if (_value != value) {
_value = value;
notify();
}
}