isNonZeroNegative property

bool get isNonZeroNegative

Checks whether the number is a non-zero negative number.

Implementation

bool get isNonZeroNegative => this != null && this! < 0;