clearHistory method
void
clearHistory()
Clear unpinned search history.
Implementation
void clearHistory() {
_history.removeWhere((e) => !e.pinned);
}
Clear unpinned search history.
void clearHistory() {
_history.removeWhere((e) => !e.pinned);
}