abs method Null safety

ExpressionInterface abs(
  1. ExpressionInterface expression
)

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

Implementation

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