add method

JDate add(
  1. Duration duration
)

Returns a new JDate instance with duration added to this.

var today = new JDate.now();
var fiftyDaysFromNow = today.add(new Duration(days: 50));

Notice that the duration being added is actually 50 * 24 * 60 * 60 seconds. If the resulting JDate has a different daylight saving offset than this, then the result won't have the same time-of-day as this, and may not even hit the calendar date 50 days later.

Be careful when working with dates in local time.

Implementation

JDate add(Duration duration) => isJs
    ? JDate.fromMillisecondsSinceEpoch(
        _millisecondsSinceEpoch + duration.inMilliseconds)
    : JDate.fromMicrosecondsSinceEpoch(
        _microsecondsSinceEpoch + duration.inMicroseconds);