clearHistory method

Future<void> clearHistory()

Clears all search history.

Implementation

Future<void> clearHistory() async {
  _ensureInitialized();
  await _box!.clear();
}