Rounds the given DateTime to the first day of the year.
static DateTime roundToFirstDayOfYear(DateTime date) { return DateTime(date.year, 1, 1); }