remove method

void remove(
  1. String key
)

Implementation

void remove(String key) {
  // delete objects[ key ];
  objects.remove(key);
}