containsValue method

bool containsValue(
  1. V? value
)

Returns true if the map contains the value, false otherwise.

Implementation

bool containsValue(V? value) {
  _count();
  return _m.containsValue(value);
}