containsKey method

bool containsKey(
  1. K? key
)

Returns true if the map contains the key, false otherwise.

Implementation

bool containsKey(K? key) {
  _count();
  return _m.containsKey(key);
}