Recurrence constructor
Recurrence({})
Implementation
Recurrence({
required this.frequency,
this.ocurrences,
this.endDate,
this.interval = 1,
this.rRule,
}) : assert(ocurrences == null || endDate == null,
"Specify either ocurrences or endDate");