results property

ValueListenable<CommandResult<TParam?, TResult>> results

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

Implementation

ValueListenable<CommandResult<TParam?, TResult>> get results =>
    _commandResult;