field static method

FieldRef field(
  1. String fieldName
)

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