hasModel method

bool hasModel(
  1. String id
)

Collection contains Model with id

Implementation

bool hasModel(String id) {
  return _models.containsKey(id);
}