remove method

void remove(
  1. String key
)

Removes any entry with the given key from the mapping of this Bundle.

@param key a String key

Implementation

void remove(String key) {
  // unparcel();
  _map.remove(key);
}