min static method

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

Implementation

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