isCollectionField function
Implementation
bool isCollectionField(FieldElement field) {
ClassElement collectionClass = field.type.element as ClassElement;
if (collectionClass.metadata.length == 0) {
return false;
}
var annotation = getAnnotation(collectionClass, Collection);
return annotation != null;
}