isPositive property

bool get isPositive

Returns true if the number is positive.

Implementation

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