atan2 method

double atan2(
  1. num other
)

Returns the arc-tag of this num and other.

Implementation

double atan2(num other) => math.atan2(this, other);