hasComponent method

bool hasComponent(
  1. String type
)

Check if a component type is registered

Implementation

bool hasComponent(String type) {
  return _factories.containsKey(type);
}