operator - method

Time operator -(
  1. Duration duration
)

Subtracts the given duration from this time. A RangeError is thrown if the resultant time is less than min or greater than max.

Implementation

Time operator -(Duration duration) => _adjust(duration, inverse: true);