idExist method

bool idExist(
  1. String id
)

Checks if the the item exist by this id

Implementation

bool idExist(String id) {
  return _inMemoryStore.containsKey(id);
}