isPositive property
bool
get
isPositive
Returns true if this number is a positive number.
Example: 12.isPositive -> true.
Implementation
bool get isPositive => this > 0;
Returns true if this number is a positive number.
Example: 12.isPositive -> true.
bool get isPositive => this > 0;