results property

Stream<CommandResult<TParam, TResult>> results

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

Implementation

Stream<CommandResult<TParam, TResult>> get results => _commandResultsSubject;