atan2 method Null safety

ExpressionInterface atan2(
  1. {required ExpressionInterface y,
  2. required ExpressionInterface x}
)

Creates a function expression which evaluates to the arctangent of y/x.

Implementation

static ExpressionInterface atan2({
  required ExpressionInterface y,
  required ExpressionInterface x,
}) =>
    BinaryExpression('atan2()', y, x);