get method

V? get(
  1. K key
)

Implementation

V? get(K key) {
  doAutoPurge();
  return _map[key];
}