RecurrenceRule constructor
const
RecurrenceRule({
- required RecurFrequency frequency,
- int interval = 1,
- int? count,
- DateTime? until,
- List<
RecurWeekday> byWeekDays = const <RecurWeekday>[], - List<
int> byMonthDays = const <int>[], - List<
int> byMonths = const <int>[], - RecurWeekday weekStart = RecurWeekday.monday,
Creates a rule. Only frequency is required.
Audited: 2026-06-12 11:26 EDT
Implementation
const RecurrenceRule({
required this.frequency,
this.interval = 1,
this.count,
this.until,
this.byWeekDays = const <RecurWeekday>[],
this.byMonthDays = const <int>[],
this.byMonths = const <int>[],
this.weekStart = RecurWeekday.monday,
});