prev property

T get prev

Returns the value of this stream during the last run of the current computation.

Can only be used inside computations. Throws NoValueException if the current computation did not use this stream during its previous run. Note that prev does not subscribe to this stream. To do that, see use.

Implementation

T get prev => StreamComputedExtensionImpl<T>(this).prev;