getWordList method

Future<List<String>?> getWordList(
  1. Wordlist wordList
)

Returns the full list of words for the named word list

wordList - The word list to return words for

Implementation

Future<List<String> ?> getWordList(Wordlist wordList) async {
  return _loadWordlist(wordList, loadWordResource);
}