remove method

dynamic remove(
  1. dynamic key
)

Implementation

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