compareTo method
- Durationother
override
Compares thisDuration toother, returning zero if the values are equal.
Returns a negative integer if thisDuration is shorter thanother, or a positive integer if it is longer.
A negativeDuration is always considered shorter than a positive one.
It is always the case thatduration1.compareTo(duration2) < 0 iff(someDate + duration1).compareTo(someDate + duration2) < 0.
Implementation
int compareTo(Duration other) => _duration.compareTo(other._duration);