operator - method

T operator -(
  1. Duration duration
)

Returns a DateTime that represents this DateTime with the given duration subtracted.

Implementation

T operator - (Duration duration) => this + -duration;