ShellConfig constructor

const ShellConfig({
  1. required ShellType type,
  2. required String shellPath,
  3. bool detached = false,
  4. Map<String, String> environmentOverrides = const {},
})

Implementation

const ShellConfig({
  required this.type,
  required this.shellPath,
  this.detached = false,
  this.environmentOverrides = const {},
});