nextMonth property
Returns the next month.
Implementation
date get nextMonth => DateTime(year, month + 1, day.clampMax(DateUtils.lastDayOfMonth(month + 1, year)));
Returns the next month.
date get nextMonth => DateTime(year, month + 1, day.clampMax(DateUtils.lastDayOfMonth(month + 1, year)));