max static method

Creates an aggregate function expression which evaluates to the greatest value of the given numeric expression.

Implementation

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