getEntry method

DictEntry getEntry(
  1. String word
)

Returns the entry for the given word.

Implementation

DictEntry getEntry(String word) {
  return DictEntry.noMeaning(
      word, DictReducedSA.getSynonyms(word), DictReducedSA.getAntonyms(word));
}