Skip to content

Commit

Permalink
adding isExecutingSync
Browse files Browse the repository at this point in the history
  • Loading branch information
escamoteur committed Nov 27, 2024
1 parent 512ed73 commit 29fc8bb
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions lib/flutter_command.dart
Original file line number Diff line number Diff line change
Expand Up @@ -358,6 +358,7 @@ abstract class Command<TParam, TResult> extends CustomValueNotifier<TResult> {
/// `ValueListenable` that changes its value on any change of the execution
/// state change of the command
ValueListenable<bool> get isExecuting => _isExecutingAsync;
ValueListenable<bool> get isExecutingSync => _isExecuting;

/// `ValueListenable<bool>` that changes its value on any change of the current
/// executability state of the command. Meaning if the command can be executed or not.
Expand Down

0 comments on commit 29fc8bb

Please sign in to comment.