trie
trie
Trie
addWord method
addWord
Trie class
Constructors
Trie
list
Properties
isCaseSensitive
hashCode
runtimeType
Methods
addWord
getAllWords
getAllWordsWithPrefix
noSuchMethod
toString
Operators
operator ==
addWord method
dynamic
addWord
(
String
word
)
Adds one word to the Trie
Implementation
addWord(String word) { _addWordNode(word, _head); }