Avg static method

Expr Avg(
  1. Expr exp
)

Implementation

static Expr Avg(Expr exp) {
  return new FunctionExpression("avg", [exp])..fieldType = exp.fieldType;
}