CommandStep constructor

const CommandStep({
  1. required String id,
  2. String execution = 'target',
  3. required List<List<String>> commands,
  4. String? workingDirectory,
  5. Map<String, String>? environment,
  6. ProcessRunnerInterface? runner,
})

Implementation

const CommandStep({
  required this.id,
  this.execution = 'target',
  required this.commands,
  this.workingDirectory,
  this.environment,
  this.runner,
});