containsKeyAll method

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

Returns true if all keys are included in the keys of Map.

Returns false if itself is Null.

Mapのキーにkeysがすべて含まれている場合trueを返します。

自身がNullな場合はfalseを返します。

Implementation

bool containsKeyAll(Iterable<Object?> keys) {
  if (this == null) {
    return false;
  }
  return keys.every((element) => this!.containsKey(element));
}