trie
trie
Trie
getAllWords method
getAllWords
Trie class
Constructors
Trie
list
Properties
isCaseSensitive
hashCode
runtimeType
Methods
addWord
getAllWords
getAllWordsWithPrefix
noSuchMethod
toString
Operators
operator ==
getAllWords method
List
<
String
>
getAllWords
(
String
words
)
Returns all words in the Trie.
Implementation
List<String> getAllWords() { return getAllWordsWithPrefix(''); }