sum static method

Creates an aggregate function expression which evaluates to sum of the values of the given numeric expression.

Implementation

static ExpressionInterface sum(ExpressionInterface expression) =>
    UnaryExpression('sum()', expression);