entryAt method

MapEntry<K, V> entryAt(
  1. int index
)

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

Implementation

MapEntry<K, V> entryAt(int index) {
  K key = _list[index];
  return MapEntry<K, V>(key, _map[key]!);
}