hasEntry method

bool hasEntry(
  1. String word
)

Does the dictionary list the word.

Implementation

bool hasEntry(String word) {
  return _getAssetBundleFor(word).containsKey(word);
}