Returns a DateTime that is this duration after now.
const Duration(days: 3).fromNow // DateTime 3 days from now
DateTime get fromNow => DateTime.now().add(this);