ShellExecutionOptions constructor
ShellExecutionOptions({})
Implementation
factory ShellExecutionOptions({
_i2.String? executable,
_i2.List<_i2.String>? shellArgs,
_i3.ShellQuotingOptions? shellQuoting,
_i2.String? cwd,
_i2.Object? env,
}) =>
ShellExecutionOptions._(
executable: executable,
shellArgs: shellArgs,
shellQuoting: shellQuoting ?? _i6.undefined,
cwd: cwd,
env: env ?? _i6.undefined,
);