ExecDetachedOptions constructor

const ExecDetachedOptions({
  1. String? cwd,
  2. Map<String, String>? env,
  3. bool allowFailure = false,
  4. bool binaryStdout = false,
  5. String? stdin,
  6. int? timeoutMs,
  7. bool detached = true,
})

Implementation

const ExecDetachedOptions({
  super.cwd,
  super.env,
  super.allowFailure = false,
  super.binaryStdout = false,
  super.stdin,
  super.timeoutMs,
  super.detached = true,
});