CommandToRun constructor

const CommandToRun({
  1. required String command,
  2. required String workingDirectory,
  3. required Iterable<String> keys,
  4. EnvConfig? envConfig,
  5. bool runConcurrently = false,
  6. String? label,
})

Implementation

const CommandToRun({
  required this.command,
  required this.workingDirectory,
  required this.keys,
  this.envConfig,
  this.runConcurrently = false,
  String? label,
}) : label = label ?? command;