clearHistory method

void clearHistory()

Clear unpinned search history.

Implementation

void clearHistory() {
  _history.removeWhere((e) => !e.pinned);
}