containsValue method
Returns true if this map contains the given value
.
Implementation
bool containsValue(V? value) {
for (final values in _map.values) {
if (values.contains(value)) {
return true;
}
}
return false;
}
Returns true if this map contains the given value
.
bool containsValue(V? value) {
for (final values in _map.values) {
if (values.contains(value)) {
return true;
}
}
return false;
}