RunOptions constructor
RunOptions({})
Implementation
RunOptions(
{this.workingDirectory,
Map<String, String>? environment,
this.includeParentEnvironment = true,
bool? runInShell,
this.stdoutEncoding = systemEncoding,
this.stderrEncoding = systemEncoding})
: environment = environment ?? {},
runInShell = runInShell ?? Platform.isWindows;