isExecuting property

Observable<bool> isExecuting

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

Implementation

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