magnitude property

double get magnitude

Magnitude (absolute value) of the complex number

Implementation

double get magnitude => math.sqrt(real * real + imaginary * imaginary);