isExecuting property

Stream<bool> isExecuting

Observable stream that issues a bool on any execution state change of the command

Implementation

Stream<bool> get isExecuting =>
    _isExecutingSubject.startWith(false).distinct();