wordAt method

String wordAt(
  1. int index
)

Gets the word at the specified index.

Implementation

String wordAt(int index) => words.elementAt(index);