isPositive method

bool isPositive()

Returns whether this number is positive (greater than zero).

Implementation

bool isPositive() => this > 0;