confirmWord method
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);
}
}