isAZero property
Return true
if the represented floating point number is zero. Note
that the equality operator will treat
FloatingPointConstants.positiveZero
and FloatingPointConstants.negativeZero as equal.
Implementation
bool get isAZero =>
this == clonePopulator().positiveZero ||
this == clonePopulator().negativeZero ||
(subNormalAsZero && isSubnormal());