value property

  1. @override
  2. @protected
Set<E> 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
Set<E> get value {
  return super.value as Set<E>;
}
  1. @override
  2. @protected
void value=(Iterable<E> value)
inherited

Unused for RxObject

Implementation

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