Returns a DateTime representing this duration added to the current time.
Example:
final expiresAt = 10.minutes.fromNow();
DateTime fromNow() { return DateTime.now().add(this); }