containsValueAll method

bool containsValueAll(
  1. Iterable<Object?> values
)

Returns true if all of the given values is in the map.

Implementation

bool containsValueAll(Iterable<Object?> values) {
  if (this == null) {
    return false;
  }
  return values.every((element) => this!.containsValue(element));
}