setRecurrenceType method
Sets the type of recurrence for the event.
- RecurrenceType.none for no recurrence
- RecurrenceType.time for time-based recurrence
- RecurrenceType.count for count-based recurrence
Implementation
EventSchedulerBuilder setRecurrenceType(RecurrenceType type) {
_recurrenceType = type;
return this;
}