isExecuting property

  1. @override
ValueListenable<bool> isExecuting
override

ValueListenable that changes its value on any change of the execution state change of the command

Implementation

@override
ValueListenable<bool> get isExecuting {
  assert(false, "isExecuting isn't supported by synchronous commands");
  return ValueNotifier<bool>(false);
}