value property

  1. @override
  2. @protected
T value
override

Get the current value and register with the current zone's RxRegistrar

Should only be used in methods that return a value. Otherwise, use unregisteredValue.

Implementation

@override
@protected
T get value => super.value;
  1. @override
  2. @protected
void value=(T value)
override

Unused for RxObject

Implementation

@override
@protected
set value(T value) => throw RxObjectValueIsReadOnly();