results property

Observable<TResult> results

Observable stream that outputs any result from the called handler function. If the handler function has void return type it will still output one Null item so that you can listen for the end of the execution.

Implementation

Observable<TResult> get results => _resultsSubject.observable;