get method

V? get(
  1. K key
)

Implementation

V? get(K key) =>
    _keyToIndex.containsKey(key) ? _values[_keyToIndex[key]!] : null;