elementInjectionType method
Implementation
String? elementInjectionType(Element element) {
for (var metadataElement in element.metadata.annotations) {
if (decorators.contains(metadataElement.toSource())) {
return metadataElement.toSource();
}
}
return null;
}