afterNewContextCollection method
      
Future<void> 
afterNewContextCollection({ 
    
- required AnalysisContextCollection contextCollection,
inherited
    This method is invoked when a new instance of AnalysisContextCollection
is created, so the plugin can perform initial analysis of analyzed files.
By default analyzes every AnalysisContext with analyzeFiles.
Implementation
Future<void> afterNewContextCollection({
  required AnalysisContextCollection contextCollection,
}) async {
  await _forAnalysisContexts(contextCollection, (analysisContext) async {
    final paths = analysisContext.contextRoot.analyzedFiles().toList();
    await analyzeFiles(
      analysisContext: analysisContext,
      paths: paths,
    );
  });
}