weeksInYear method

int weeksInYear({
  1. WeekConfig config = WeekConfig.iso,
})

Gets the number of weeks in this year.

Implementation

int weeksInYear({WeekConfig config = WeekConfig.iso}) {
  final dec28 = Hora.of(year: year, month: 12, day: 28, locale: locale);
  return dec28._weekOfYear(config);
}