remove method

Store remove(
  1. Type key
)

Implementation

Store remove(Type key) {
  _objects.remove(key);
  return this;
}