eventFilter property

EventFilter<T>? eventFilter

Defines which events should be displayed on given date.

This method is use full when you have recurring events. As of now this library does not support recurring events. You can implement same behaviour in this function. This function will overwrite default behaviour of getEventsOnDay function which will be used to display events on given day in MonthView, DayView and WeekView.

Implementation

EventFilter<T>? get eventFilter => _eventFilter;