roundToFirstDayOfWeek static method
Rounds the given DateTime to the first day of the week (Monday).
Implementation
static DateTime roundToFirstDayOfWeek(DateTime date) {
final dayOfWeek = date.weekday;
final daysToSubtract = dayOfWeek - 1;
return date.subtract(Duration(days: daysToSubtract));
}