containsKey method

bool containsKey(
  1. K key
)

Returns whether a value is currently associated with key.

Implementation

bool containsKey(K key) => _expando[key] != null;