isLastDayOfWeek method

bool isLastDayOfWeek()

Checks if this DateTime is the last day of the week (Sunday).

Implementation

bool isLastDayOfWeek() {
  return weekday == DateTime.sunday;
}