isAutoGeneratedPrimaryKeyField function
Implementation
bool isAutoGeneratedPrimaryKeyField(FieldElement field) {
if (field.metadata.annotations.length == 0) {
return false;
}
var annotation = getAnnotation(field, PrimaryKey);
if (annotation == null) return false;
var autoGenerated = annotation.peek('autoGenerated')?.boolValue;
return autoGenerated != null && autoGenerated == true;
}