isEntityClass function
Implementation
bool isEntityClass(ClassElement element) {
var annotation = getAnnotation(element, Entity);
return annotation != null;
}
bool isEntityClass(ClassElement element) {
var annotation = getAnnotation(element, Entity);
return annotation != null;
}