Abs static method

Expr Abs(
  1. Expr exp
)

Implementation

static Expr Abs(Expr exp) {
  return new FunctionExpression("Abs", [exp])..fieldType = exp.fieldType;
}