CommandToRun constructor

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

Implementation

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