containsKey method
Returns if the element specified byt key
is in the map
Implementation
bool containsKey(key) {
return _items.containsKey(_getKey(key));
}
Returns if the element specified byt key
is in the map
bool containsKey(key) {
return _items.containsKey(_getKey(key));
}