Compare two complex numbers for equality (real and imaginary).
@override bool operator ==(Object other) => other is Complex && _re == other._re && _im == other._im;