Converts the integer value to a Duration object representing days.
Example:
final longWait = 3.days; // Duration(days: 3)
@returns A Duration object representing the specified number of days.
Duration get days => Duration(days: this);