remove method

MODEL? remove(
  1. String id
)

Implementation

MODEL? remove(String id) {
  _list.remove(id);
  return _idMap.remove(id);
}