containsKey method

bool containsKey(
  1. K key
)

Implementation

bool containsKey(K key) {
  _removeExpired();
  return _map.containsKey(key);
}