operator + method

Date operator +(
  1. int days
)

Returns a new Date with given amount of days added to this. days can be negative, in this case subtraction will happen.

Implementation

Date operator +(final int days) => addDays(days);