containsValue method

bool containsValue(
  1. V? value
)
inherited

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;
}