ShellExecutor constructor

ShellExecutor({
  1. required String shellCommand,
  2. bool printOutput = true,
  3. String? workingDirectory,
})

Implementation

ShellExecutor({
  required this.shellCommand,
  this.printOutput = true,
  this.workingDirectory,
});