hasEntry method

Future<bool> hasEntry(
  1. String word
)

Does the dictionary list the word.

Implementation

Future<bool> hasEntry(String word) async {
  return (await _getAssetBundleFor(word)).containsKey(word);
}