Processor constructor

Processor({
  1. required String executable,
  2. required List<String> arguments,
  3. required String workingDirectory,
  4. required bool warnings,
  5. required String name,
  6. required Environment environment,
  7. required Mode mode,
  8. required bool debug,
})

Implementation

Processor({
  required this.executable,
  required this.arguments,
  required this.workingDirectory,
  required this.warnings,
  required this.name,
  required this.environment,
  required this.mode,
  required this.debug,
}) {
  _addVariables();
}