onOutline property

Stream<AnalysisOutline> onOutline

Reports the outline associated with a single file.

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

Implementation

Stream<AnalysisOutline> get onOutline {
  return _listen('analysis.outline', AnalysisOutline.parse);
}