sqrt method Null safety
- 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);