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