weekly static method

Recurrence weekly({
  1. required Hora start,
  2. Hora? end,
  3. int? count,
  4. int interval = 1,
  5. Set<int> daysOfWeek = const {DateTime.monday},
})

Creates a weekly recurrence.

Implementation

static Recurrence weekly({
  required Hora start,
  Hora? end,
  int? count,
  int interval = 1,
  Set<int> daysOfWeek = const {DateTime.monday},
}) =>
    _WeeklyRecurrence(
      start: start,
      end: end,
      count: count,
      interval: interval,
      daysOfWeek: daysOfWeek,
    );