future property

  1. @override
FutureOr<T> get future
override

The Future that waits for the first value to be built.

You want to use this field to access the observables from each others. Accessing the future after the first value will return the current state.

Implementation

@override
FutureOr<T> get future => _source.future;