idExist method

bool idExist(
  1. int id
)

Checks if the the item exist by this id

Implementation

bool idExist(int id) {
  return _store.containsKey(id);
}