arg method

double arg()

Computes the phase angle (argument) of the complex number in radians.

Implementation

double arg() => math.atan2(_imag, _real);