executor property

ComputerExecutor get executor

Get or create the executor.

Implementation

ComputerExecutor get executor {
  _executor ??= CliComputerExecutor(
    getMouseAnimationEnabled: () => mouseAnimationEnabled.value,
    getHideBeforeActionEnabled: () => hideBeforeActionEnabled.value,
  );
  return _executor!;
}