roundToFirstDayOfWeek static method

DateTime roundToFirstDayOfWeek(
  1. DateTime date
)

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));
}