getEntityAnnotation function
ConstantReader?
getEntityAnnotation(
- Element element
Implementation
ConstantReader? getEntityAnnotation(Element element) {
var annotation = getAnnotation(element, Entity);
if (annotation != null) return annotation;
return null;
}