getComponentByPath static method
Implementation
static ComponentConfig? getComponentByPath(String path) {
for (final config in _components.values) {
if (config.templatePath == path) return config;
}
return null;
}
static ComponentConfig? getComponentByPath(String path) {
for (final config in _components.values) {
if (config.templatePath == path) return config;
}
return null;
}