RecurWeekday enum

A day of the week, carrying both its RRULE code and its DateTime.weekday number so the iterator can match without a second lookup table.

Inheritance
Available extensions

Values

monday → const RecurWeekday

Monday (MO). Audited: 2026-06-12 11:26 EDT

const RecurWeekday(1, 'MO')
tuesday → const RecurWeekday

Tuesday (TU). Audited: 2026-06-12 11:26 EDT

const RecurWeekday(2, 'TU')
wednesday → const RecurWeekday

Wednesday (WE). Audited: 2026-06-12 11:26 EDT

const RecurWeekday(3, 'WE')
thursday → const RecurWeekday

Thursday (TH). Audited: 2026-06-12 11:26 EDT

const RecurWeekday(4, 'TH')
friday → const RecurWeekday

Friday (FR). Audited: 2026-06-12 11:26 EDT

const RecurWeekday(5, 'FR')
saturday → const RecurWeekday

Saturday (SA). Audited: 2026-06-12 11:26 EDT

const RecurWeekday(6, 'SA')
sunday → const RecurWeekday

Sunday (SU). Audited: 2026-06-12 11:26 EDT

const RecurWeekday(7, 'SU')

Properties

code String
The RRULE two-letter code (MO, TU, …).
final
hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
no setterinherited
isoWeekday int
Matches DateTime.weekday (Monday = 1 … Sunday = 7).
final
name String

Available on Enum, provided by the EnumName extension

The name of the enum value.
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Constants

values → const List<RecurWeekday>
A constant List of the values in this enum, in order of their declaration.