next property
Weekday
get
next
Returns the next day of the week. Wraps around from Sunday to Monday.
Implementation
Weekday get next => values[value % 7];
Returns the next day of the week. Wraps around from Sunday to Monday.
Weekday get next => values[value % 7];