setRecurrenceCount method

EventSchedulerBuilder setRecurrenceCount(
  1. int count
)

Sets the number of times an event should recur.

Required when recurrenceType is RecurrenceType.count. Specifies how many times the event should recur.

Implementation

EventSchedulerBuilder setRecurrenceCount(int count) {
  _recurrenceCount = count;
  return this;
}