CommandToRun constructor

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

Implementation

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