ExecStreamOptions constructor

const ExecStreamOptions({
  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 = false,
  8. void onStdoutChunk(
    1. String chunk
    )?,
  9. void onStderrChunk(
    1. String chunk
    )?,
  10. void onSpawn(
    1. Process process
    )?,
})

Implementation

const ExecStreamOptions({
  super.cwd,
  super.env,
  super.allowFailure = false,
  super.binaryStdout = false,
  super.stdin,
  super.timeoutMs,
  super.detached = false,
  this.onStdoutChunk,
  this.onStderrChunk,
  this.onSpawn,
});