containsKeyAll method

bool containsKeyAll(
  1. Iterable<Object?> keys
)

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

Implementation

bool containsKeyAll(Iterable<Object?> keys) {
  return keys.every((element) => containsKey(element));
}