isPositive property

bool isPositive

Returns true when amount of this money is positive (greater than zero).

TIP: If you need to check that this value is zero or greater, use expression !money.isNegative instead.

Implementation

bool get isPositive => amount.isPositive;