Returns true if the map contains the specified key and value, false otherwise.
true
key
value
false
bool contains(Object key, Object value) => containsKey(key) && this[key] == value;