registerComponent method
Register a component factory and definition
Implementation
void registerComponent(String type, ComponentFactory factory) {
_factories[type] = factory;
debugPrint('Registered component: $type');
}
Register a component factory and definition
void registerComponent(String type, ComponentFactory factory) {
_factories[type] = factory;
debugPrint('Registered component: $type');
}