containsValue method

  1. @override
bool containsValue(
  1. Object? value
)
override

Whether this map contains the given value.

Implementation

@override
bool containsValue(Object? value) {
  return _map.containsValue(value);
}