valueAt method

V valueAt(
  1. int index
)

Returns the indexth value. The index must be non-negative and less than length. Index zero represents the first value.

Implementation

V valueAt(int index) {
  K key = _list[index];
  return _map[key]!;
}