getWordAtIdx method

String getWordAtIdx(
  1. int wordIdx
)

Returns the word located at the specified index.

Implementation

String getWordAtIdx(int wordIdx) {
  return _idxToWords[wordIdx];
}