addMonths(): Adds a specified number of months to a DateTime.
DateTime addMonths(int months) { return DateTime(year, month + months, day, hour, minute, second, millisecond, microsecond); }