StripStep constructor

const StripStep({
  1. required String id,
  2. String execution = 'target',
  3. required String inputPath,
  4. required String outputPath,
  5. bool stripAll = false,
  6. ProcessRunnerInterface? runner,
})

Implementation

const StripStep({
  required this.id,
  this.execution = 'target',
  required this.inputPath,
  required this.outputPath,
  this.stripAll = false,
  this.runner,
});