value property

Either<L, R>? value

The last L or R value produced by the use case which can either reference the leftValue or the rightValue.

This can be used to determine which is latest among the two values.

Implementation

Either<L, R>? get value => _value;