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