isNotEqualZero property

bool get isNotEqualZero

ZeroChecker extension to show if this num is not zero or not

Implementation

bool get isNotEqualZero{
  return this != 0;
}