get method
V?
get(
- 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],
);