containsKey method

bool containsKey(
  1. String key
)

Returns true if the given key is contained in the mapping of this Bundle.

@param key a String key @return true if the key is part of the mapping, false otherwise

Implementation

bool containsKey(String key) {
  // unparcel();
  return _map.containsKey(key);
}