firstDayOfWeek method
Implementation
DateTime firstDayOfWeek() {
// The week starts with monday, not sunday!
return subtract(Duration(days: weekday - 1));
}
DateTime firstDayOfWeek() {
// The week starts with monday, not sunday!
return subtract(Duration(days: weekday - 1));
}