isLastDayOfWeek method
Checks if this DateTime is the last day of the week (Sunday).
Implementation
bool isLastDayOfWeek() {
return weekday == DateTime.sunday;
}
Checks if this DateTime is the last day of the week (Sunday).
bool isLastDayOfWeek() {
return weekday == DateTime.sunday;
}