abs static method

Creates a function expression which evaluates to the absolute value of the given numeric expression.

Implementation

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