onExistingImports property

Stream<CompletionExistingImports> onExistingImports

Reports existing imports in a library. This notification may be sent multiple times for a library. When a notification is processed, clients should replace any previous information for the library.

Implementation

Stream<CompletionExistingImports> get onExistingImports {
  return _listen(
      'completion.existingImports', CompletionExistingImports.parse);
}