daily method

Recurrence daily({
  1. Hora? end,
  2. int? count,
  3. int interval = 1,
  4. Set<int>? excludeWeekdays,
})

Creates a daily recurrence starting from this date.

Implementation

Recurrence daily({
  Hora? end,
  int? count,
  int interval = 1,
  Set<int>? excludeWeekdays,
}) =>
    Recurrence.daily(
      start: this,
      end: end,
      count: count,
      interval: interval,
      excludeWeekdays: excludeWeekdays,
    );