ProcessConfig constructor

const ProcessConfig({
  1. required String command,
  2. List<String> args = const [],
  3. String? workDir,
  4. Map<String, String>? env,
  5. Duration? timeout,
  6. String? stdin,
  7. bool captureStdout = true,
  8. bool captureStderr = true,
  9. bool runInShell = false,
})

Implementation

const ProcessConfig({
  required this.command,
  this.args = const [],
  this.workDir,
  this.env,
  this.timeout,
  this.stdin,
  this.captureStdout = true,
  this.captureStderr = true,
  this.runInShell = false,
});