containsKeyAny method

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

Returns true if any of the keys in Map contain any of the keys in keys.

Returns false if itself is Null.

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

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

Implementation

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