RecurrencePattern constructor

RecurrencePattern({
  1. String? type,
  2. int? interval,
  3. int? month,
  4. int? dayOfMonth,
  5. String? daysOfWeek,
  6. String? firstDayOfWeek,
  7. String? index,
})

Creates a new RecurrencePattern instance.

Implementation

RecurrencePattern({
  this.type,
  this.interval,
  this.month,
  this.dayOfMonth,
  this.daysOfWeek,
  this.firstDayOfWeek,
  this.index,
});