nextMonth method
Implementation
ReportMonth nextMonth() {
if (month == KeckMonth.december) {
return ReportMonth(KeckMonth.january, year + 1);
} else {
return ReportMonth(KeckMonth.values[month.index + 1], year);
}
}
ReportMonth nextMonth() {
if (month == KeckMonth.december) {
return ReportMonth(KeckMonth.january, year + 1);
} else {
return ReportMonth(KeckMonth.values[month.index + 1], year);
}
}