Whether this DateTime falls on a Saturday or Sunday.
Uses weekday where DateTime.monday = 1 through DateTime.sunday = 7.
DateTime.monday
DateTime.sunday
bool get isWeekend => weekday == DateTime.saturday || weekday == DateTime.sunday;