get method
V?
get(
- K key
Implementation
V? get(K key) => _map.containsKey(key)
? //
_map[key]
: (_allowedInExpando(key) ? _expando[key!] as V : null);
V? get(K key) => _map.containsKey(key)
? //
_map[key]
: (_allowedInExpando(key) ? _expando[key!] as V : null);