isNonZeroPositive property

bool get isNonZeroPositive

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

Implementation

bool get isNonZeroPositive => this != null && this! > 0;