dictionaryHistory property

List<DictionarySearchResult> dictionaryHistory

Returns all dictionary history results. Oldest is first.

Implementation

List<DictionarySearchResult> get dictionaryHistory =>
    _database.dictionarySearchResults
        .getAllSync(_dictionaryHistory.values.toList())
        .whereNotNull()
        .toList();