ShellConfig constructor

const ShellConfig({
  1. String? program,
  2. List<String> args = const [],
  3. String? workingDirectory,
  4. Map<String, String> env = const {},
})

Implementation

const ShellConfig({
  this.program,
  this.args = const [],
  this.workingDirectory,
  this.env = const {},
});