operator [] method

V? operator [](
  1. K key
)

Returns the value associated with the key, or null if it doesn't exist.

Implementation

V? operator [](K key) => _container[key];