get method

V? get(
  1. K key
)

Returns associated value if the key is still alive.

Implementation

V? get(K key) => _expando[key]?.value;