onAnalyzedFiles property

Stream<AnalysisAnalyzedFiles> onAnalyzedFiles

Reports the paths of the files that are being analyzed.

This notification is not subscribed to by default. Clients can subscribe by including the value "ANALYZED_FILES" in the list of services passed in an analysis.setGeneralSubscriptions request.

Implementation

Stream<AnalysisAnalyzedFiles> get onAnalyzedFiles {
  return _listen('analysis.analyzedFiles', AnalysisAnalyzedFiles.parse);
}