isNonZeroNegative property
Checks whether the number is a non-zero negative number.
Implementation
bool get isNonZeroNegative => this != null && this! < 0;
Checks whether the number is a non-zero negative number.
bool get isNonZeroNegative => this != null && this! < 0;