results property

Observable<CommandResult<TResult>> results

emits CommandResult<TRESULT> the combined state of the commane, which is often easier in combination with Flutter StreamBuilder because you have all state information at one place.

Implementation

Observable<CommandResult<TResult>> get results => _commandResultsSubject;