yearly static method
Creates a yearly recurrence.
Implementation
static Recurrence yearly({
required Hora start,
Hora? end,
int? count,
int interval = 1,
}) =>
_YearlyRecurrence(
start: start,
end: end,
count: count,
interval: interval,
);