ShellExecOptions constructor

const ShellExecOptions({
  1. String? workingDirectory,
  2. Map<String, String>? environment,
  3. Duration timeout = const Duration(seconds: 30),
  4. int maxOutputBytes = maxOutputLength,
  5. bool mergeStderr = true,
  6. void onProgress(
    1. String
    )?,
})

Implementation

const ShellExecOptions({
  this.workingDirectory,
  this.environment,
  this.timeout = const Duration(seconds: 30),
  this.maxOutputBytes = maxOutputLength,
  this.mergeStderr = true,
  this.onProgress,
});