yearly static method

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

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