StripStepConfig constructor

StripStepConfig({
  1. required String id,
  2. required String inputPath,
  3. required String outputPath,
  4. bool stripAll = false,
  5. List<String> needs = const [],
})

Implementation

StripStepConfig({
  required super.id,
  required this.inputPath,
  required this.outputPath,
  this.stripAll = false,
  super.needs,
});