atan2 method

double atan2(
  1. double y,
  2. double x
)

Computes the arc tangent of y/x using the signs of arguments to determine the correct quadrant.

Implementation

double atan2(double y, double x) => dart_math.atan2(y, x);