yearly method

Recurrence yearly({
  1. Hora? end,
  2. int? count,
  3. int interval = 1,
})

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,
    );