operator + method

  1. @override
Date operator +(
  1. Duration duration
)
override

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

Implementation

@override
Date operator + (Duration duration) => Date.fromMicroseconds(microsecondsSinceEpoch + duration.inMicroseconds);