AnalyzerContext constructor

AnalyzerContext({
  1. required String projectPath,
  2. required FileSystem fileSystem,
  3. Map<String, String> configuration = const {},
  4. SourceFileCache? sourceFileCache,
})

Implementation

AnalyzerContext({
  required this.projectPath,
  required this.fileSystem,
  this.configuration = const {},
  this.sourceFileCache,
});