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