arg method
Computes the phase angle (argument) of the complex number in radians.
Implementation
double arg() => math.atan2(_imag, _real);
Computes the phase angle (argument) of the complex number in radians.
double arg() => math.atan2(_imag, _real);