AggregateFunctionInvocation constructor

AggregateFunctionInvocation({
  1. required IdentifierToken function,
  2. required FunctionParameters parameters,
  3. OrderByBase? orderBy,
  4. Expression? filter,
})

Implementation

AggregateFunctionInvocation({
  required this.function,
  required this.parameters,
  this.orderBy,
  this.filter,
}) : nameToken = function;