AggExpr constructor

AggExpr({
  1. required AggFunc func,
  2. Expr? arg,
  3. bool distinct = false,
  4. String? alias,
})

Implementation

AggExpr({
  required this.func,
  this.arg,
  this.distinct = false,
  this.alias,
});