ProjectAnalyzer constructor

ProjectAnalyzer({
  1. required List<String> directoriesToAnalyze,
  2. required List<String> directoriesToIgnore,
})

Creates a ProjectAnalyzer with the given directories to analyze and ignore.

Implementation

ProjectAnalyzer({
  required this.directoriesToAnalyze,
  required this.directoriesToIgnore,
});