isPositive property

bool get isPositive

Returns true if the value is greater than zero.

Implementation

bool get isPositive => (this ?? 0) > 0;