atan2 static method

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

Implementation

static double atan2(double y, double x) => (y == 0 && x == 0) ? 0 : math.atan2(y, x);