Avg constructor

Avg(
  1. dynamic expr
)

Creates $avg operator expression

Returns the average value of the numeric values. $avg ignores non-numeric values.

Implementation

Avg(expr) : super('avg', expr is List ? AEList(expr) : expr);