getComponentByPath static method

ComponentConfig? getComponentByPath(
  1. String path
)

Implementation

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