onResults property

Stream<SearchResults> onResults

Reports some or all of the results of performing a requested search. Unlike other notifications, this notification contains search results that should be added to any previously received search results associated with the same search id.

Implementation

Stream<SearchResults> get onResults {
  return _listen('search.results', SearchResults.parse);
}