isWeekend property

bool get isWeekend

Whether this DateTime falls on a Saturday or Sunday.

Uses weekday where DateTime.monday = 1 through DateTime.sunday = 7.

Implementation

bool get isWeekend => weekday == DateTime.saturday || weekday == DateTime.sunday;