ShellSpec constructor

const ShellSpec({
  1. required String executable,
  2. required List<String> arguments,
  3. required String? workingDirectory,
  4. required Map<String, String> environment,
})

Implementation

const ShellSpec({
  required this.executable,
  required this.arguments,
  required this.workingDirectory,
  required this.environment,
});