IRecurrenceRule constructor

IRecurrenceRule({
  1. required IRecurrenceFrequency frequency,
  2. DateTime? untilDate,
  3. int count = 0,
  4. int interval = 0,
  5. int weekday = 0,
})

Implementation

IRecurrenceRule({
  required this.frequency,
  this.untilDate,
  this.count = 0,
  this.interval = 0,
  this.weekday = 0,
});