GenConfig constructor

const GenConfig({
  1. required String sourceDir,
  2. String outputPrefix = 'CLAUDIO',
  3. int targetSizeKB = 1000,
  4. bool removeComments = true,
  5. String projectTypeName = 'auto',
  6. List<String> extensions = const [],
  7. List<String> ignorePatterns = const [],
  8. List<String> ignoreFiles = const [],
  9. List<String> extraRootFiles = const [],
  10. String outputFormatName = 'text',
  11. bool verbose = false,
})

Implementation

const GenConfig({
  required this.sourceDir,
  this.outputPrefix = 'CLAUDIO',
  this.targetSizeKB = 1000,
  this.removeComments = true,
  this.projectTypeName = 'auto',
  this.extensions = const [],
  this.ignorePatterns = const [],
  this.ignoreFiles = const [],
  this.extraRootFiles = const [],
  this.outputFormatName = 'text',
  this.verbose = false,
});