sqrt method Null safety

ExpressionInterface sqrt(
  1. ExpressionInterface expression
)

Creates a function expression which evaluates to the square root of the given numeric expression.

Implementation

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