getEntityAnnotation function

ConstantReader? getEntityAnnotation(
  1. Element element
)

Implementation

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