Return true if both the real and imaginary parts of Complex are finite, otherwise return false.
@override bool isFinite() { return real.isFinite || imaginary.isFinite; }