EventRepeat constructor

const EventRepeat({
  1. required RepeatType type,
  2. int interval = 1,
  3. List<int>? weekdays,
  4. int? dayOfMonth,
  5. DateTime? endDate,
  6. int? occurrences,
})

Implementation

const EventRepeat({
  required this.type,
  this.interval = 1,
  this.weekdays,
  this.dayOfMonth,
  this.endDate,
  this.occurrences,
});