conjugate property

Complex get conjugate

Returns the conjugate of this Complex number (the sign of the imaginary component is flipped).

Implementation

Complex get conjugate => Complex(real, Imaginary(imaginary.value * -1.0));