field static method
Creates a field reference expression.
The field name will be validated against the table schema at evaluation time.
Example:
Expr.field('price') // References the 'price' field
Implementation
static FieldRef field(String fieldName) => FieldRef(fieldName);