isCollectionField function

bool isCollectionField(
  1. FieldElement field
)

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;
}