confirmWord method

  1. @override
void confirmWord(
  1. String word
)
override

Implementation

@override
void confirmWord(String word) {
  super.confirmWord(word);
  final table = preLatinForText(word.trim());
  if (table.isNotEmpty) {
    final words = _nextSuggestion(table, word);
    suggestionWords.addAll(words);
  }
}