onOccurrences property

Stream<AnalysisOccurrences> onOccurrences

Reports the occurrences of references to elements within a single file.

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

Implementation

Stream<AnalysisOccurrences> get onOccurrences {
  return _listen('analysis.occurrences', AnalysisOccurrences.parse);
}