ScriptRunnerShellConfig constructor

const ScriptRunnerShellConfig({
  1. String? defaultShell,
  2. String? windows,
  3. String? macos,
  4. String? linux,
})

Create a new shell configuration from given arguments. When no shell is specified for a platform, the default shell is used.

Implementation

const ScriptRunnerShellConfig({
  this.defaultShell,
  this.windows,
  this.macos,
  this.linux,
});