value property

  1. @override
  2. @protected
Set<T> value
override

Retrieves the current value of the reactive variable.

Implementation

@override
@protected
Set<T> get value {
  return _value;
}
void value=(Set<T> value)
inherited

Updates the value of the reactive variable to value.

Implementation

set value(T value) {
  this._value = value;
  refresh();
}