subtract method

Instant subtract(
  1. Duration duration
)

Returns a new Instant instance with duration subtracted from this.

The returned Instant is in the same time zone as this and does not take into account daylight saving offsets.

Implementation

Instant subtract(Duration duration) => this - duration;