remove method

void remove(
  1. String id
)

Remove entity

Implementation

void remove(String id) {
  _entities.remove(id);
  _ids.remove(id);
}