isColumnField function
Implementation
bool isColumnField(FieldElement field) {
if (field.metadata.annotations.length == 0) {
return false;
}
var annotation = getAnnotation(field, ColumnInfo);
return annotation != null;
}
bool isColumnField(FieldElement field) {
if (field.metadata.annotations.length == 0) {
return false;
}
var annotation = getAnnotation(field, ColumnInfo);
return annotation != null;
}