isNaN property

  1. @override
bool isNaN
override

True if the real and imaginary parts are the double Not-a-Number value; otherwise, false.

Implementation

@override
bool get isNaN => real.isNaN || imaginary.isNaN;