containsKey method

bool containsKey(
  1. dynamic key
)

Returns if the element specified byt key is in the map

Implementation

bool containsKey(key) {
  return _items.containsKey(_getKey(key));
}