next method

SolarSeason next(
  1. int seasons
)

Implementation

SolarSeason next(int seasons) {
  SolarMonth m = SolarMonth.fromYm(_year, _month).next(MONTH_COUNT * seasons);
  return SolarSeason.fromYm(m.getYear(), m.getMonth());
}