operator - method

Date operator -(
  1. int days
)

Returns a new Date with given amount of days subtracted from this. days can be negative, in this case addition will happen.

Implementation

Date operator -(final int days) => subtractDays(days);