weekly static method
Creates a weekly recurrence.
Implementation
static Recurrence weekly({
required Hora start,
Hora? end,
int? count,
int interval = 1,
Set<int> daysOfWeek = const {DateTime.monday},
}) =>
_WeeklyRecurrence(
start: start,
end: end,
count: count,
interval: interval,
daysOfWeek: daysOfWeek,
);