isPositive property

bool get isPositive

Returns true if the number is positive (greater than 0).

Example:

5.isPositive; // true
-5.isPositive; // false

Implementation

bool get isPositive => this > 0;