keyAt method

K keyAt(
  1. int index
)

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

Implementation

K keyAt(int index) => _list[index];