get method

V? get(
  1. K k
)

Returns the value for the given key or null if key is not in the map.

Implementation

V? get(K k) {
  _count();
  return _m[k];
}