CommandStep constructor

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

Implementation

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