singleDayEvents property
UnmodifiableMapView<DateTime, UnmodifiableListView<CalendarEventData<T> > >
get
singleDayEvents
Implementation
UnmodifiableMapView<DateTime, UnmodifiableListView<CalendarEventData<T>>>
get singleDayEvents => UnmodifiableMapView(
Map.fromIterable(
_singleDayEvents.keys.map((key) {
return MapEntry(
key,
UnmodifiableListView(
_singleDayEvents[key] ?? [],
));
}),
),
);