discardSearchResults method
Discards search results from the session with the given id. getSearchResults
should no longer
be called for that search.
searchId
Unique search session identifier.
Implementation
Future<void> discardSearchResults(String searchId) async {
await _client.send('DOM.discardSearchResults', {
'searchId': searchId,
});
}