onClosingLabels property

Stream<AnalysisClosingLabels> onClosingLabels

Reports closing labels relevant to a given file.

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

Implementation

Stream<AnalysisClosingLabels> get onClosingLabels {
  return _listen('analysis.closingLabels', AnalysisClosingLabels.parse);
}