containsKey method
- K key
Returns true if the map contains the specified key.
Implementation
bool containsKey(K key) {
return _container.containsKey(key);
}
Returns true if the map contains the specified key.
bool containsKey(K key) {
return _container.containsKey(key);
}