future property
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 {
if (!initialized) {
initialize();
}
return _future!;
}