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