elementAtIntIndex method

V elementAtIntIndex(
  1. int index
)

Returns the value at the given zero-based index in iteration order. Throws if the index is out of range.

Implementation

V elementAtIntIndex(int index) => values.elementAt(index);