getRecurrenceExceptionDates method

List<DateTime>? getRecurrenceExceptionDates(
  1. int index
)
inherited

Maps the custom appointments recurrenceExceptionDates to the Appointment

Allows to set the custom appointments corresponding property to the Appointment's recurrenceExceptionDates property.

Note: It is applicable only when the custom appointments set to the appointments.

See also:

  • Appointment.recurrenceExceptionDates, which used to exclude some dates from the recurrence series of the appointment.
  • getRecurrenceRule,which used to map the custom appointment's Appointment.recurrenceRule property of the Appointment.
  • RecurrenceProperties, which used to create the recurrence rule based on the values set to these properties.
  • SfCalendar.generateRRule, which used to generate recurrence rule based on the RecurrenceProperties values.
  • Knowledge base: How to exclude the dates from the recurrence appointments
 @override
 DateTime getRecurrenceExceptionDates(int index) {
   return appointments![index].exceptionDates;
 }

Implementation

List<DateTime>? getRecurrenceExceptionDates(int index) => null;