weekly method
Creates a weekly recurrence starting from this date.
Implementation
Recurrence weekly({
Hora? end,
int? count,
int interval = 1,
Set<int>? daysOfWeek,
}) =>
Recurrence.weekly(
start: this,
end: end,
count: count,
interval: interval,
daysOfWeek: daysOfWeek ?? {weekday},
);