startOfWeek property

Date startOfWeek

Get a Date representing start of week of this Date in local time.

Implementation

Date get startOfWeek => weekday == DateTime.sunday ? this : subDays(weekday);