RunOptions constructor

RunOptions({String workingDirectory, Map<String, String> environment, bool includeParentEnvironment: true, bool runInShell: false, Encoding stdoutEncoding: systemEncoding, Encoding stderrEncoding: systemEncoding })

Implementation

RunOptions(
    {this.workingDirectory,
    this.environment,
    this.includeParentEnvironment: true,
    this.runInShell: false,
    this.stdoutEncoding: systemEncoding,
    this.stderrEncoding: systemEncoding});