nextMonth method

ReportMonth nextMonth()

Implementation

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