lookup method
      
TValue?
lookup(
    
- TKey key
wrapper around key-value access
Implementation
TValue? lookup(TKey key) => containsKey(key) ? this[key] : null;wrapper around key-value access
TValue? lookup(TKey key) => containsKey(key) ? this[key] : null;