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