isTermInStash method

bool isTermInStash(
  1. String searchTerm
)

Get the contents of the Stash.

Implementation

bool isTermInStash(String searchTerm) {
  return isTermInSearchHistory(historyKey: stashKey, searchTerm: searchTerm);
}