LocalShellAction constructor

const LocalShellAction({
  1. required List<String> command,
  2. required Map<String, String> env,
  3. int? timeoutMs,
  4. String? user,
  5. String? workingDirectory,
})

Implementation

const LocalShellAction({
  required this.command,
  required this.env,
  this.timeoutMs,
  this.user,
  this.workingDirectory,
});