get method

V? get(
  1. K key
)

Returns the value associated with a key. @param {K} key The key to look up in the Map. @return {V|null} The value associated with the given key, or null if not present in the Map.

Implementation

V? get(K key) => _i4.callMethod(
      this,
      'get',
      [key],
    );