value property

T get value

Getter for the current value of the stream.

Implementation

T get value => _value;
set value (T val)

Setter for the current value of the stream.

Implementation

set value(T val) {
  add(val);
}