max method Null safety

ExpressionInterface max(
  1. ExpressionInterface expression
)

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);