FunctionCallExpr constructor

FunctionCallExpr(
  1. String name,
  2. List<Expr> args, {
  3. bool isStarArg = false,
  4. bool distinct = false,
  5. WindowSpec? window,
  6. Expr? filterExpr,
  7. List<WindowOrderItem>? aggOrderBy,
})

Implementation

FunctionCallExpr(
  this.name,
  this.args, {
  this.isStarArg = false,
  this.distinct = false,
  this.window,
  this.filterExpr,
  this.aggOrderBy,
});