bool containsKey(
Map map,
key
)

Not documented.

Source

static bool containsKey(Map map, key) {
  for (final k in map.keys) {
    if (key == k) {
      return true;
    }
  }
  return false;
}