@override Complex operator +(Complex other) { final iTotal = real + other.real; final jTotal = imaginary + other.imaginary; return Complex(iTotal, jTotal); }