Trie.list constructor

Trie.list(List<String> _words)

Implementation

Trie.list(this._words) {
  _head = new _TrieNode(null);
  for (String word in _words) {
    addWord(word);
  }
}