weeksInYear method
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);
}
Gets the number of weeks in this year.
int weeksInYear({WeekConfig config = WeekConfig.iso}) {
final dec28 = Hora.of(year: year, month: 12, day: 28, locale: locale);
return dec28._weekOfYear(config);
}