isPositive property
bool
get
isPositive
Returns true if the value is greater than zero.
Implementation
bool get isPositive => (this ?? 0) > 0;
Returns true if the value is greater than zero.
bool get isPositive => (this ?? 0) > 0;