weekday property

int weekday

The day of the week DateTime.monday..DateTime.sunday.

In accordance with ISO 8601 a week starts with Monday, which has the value 1.

Implementation

int get weekday {
  return _date.weekday;
}