AggregateFunctionExpression<D extends Object> constructor
AggregateFunctionExpression<D extends Object> (
- String functionName,
- List<
FunctionParameter> arguments, { - Expression<
bool> ? filter, - bool distinct = false,
- OrderBy? orderBy,
Creates an aggregate function expression from the syntactic components.
Implementation
AggregateFunctionExpression(
this.functionName,
this.arguments, {
Expression<bool>? filter,
this.distinct = false,
this.orderBy,
}) : filter = filter != null ? Where(filter) : null;