onImplemented property

Stream<AnalysisImplemented> onImplemented

Reports the classes that are implemented or extended and class members that are implemented or overridden in a file.

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

Implementation

Stream<AnalysisImplemented> get onImplemented {
  return _listen('analysis.implemented', AnalysisImplemented.parse);
}