isPositive property
bool
get
isPositive
Returns true if the duration is positive.
Example:
Duration(seconds: 1).isPositive; // true
Duration().isPositive; // false
Implementation
bool get isPositive => inMicroseconds > 0;