onHighlights property

Stream<AnalysisHighlights> onHighlights

Reports the highlight regions associated with a given file.

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

Implementation

Stream<AnalysisHighlights> get onHighlights {
  return _listen('analysis.highlights', AnalysisHighlights.parse);
}