EventListScreen constructor
const
EventListScreen({
- required DateTime date,
- required List<
CalendarMonthEvent> events, - String? templateId,
- Key? key,
Creates a new instance of EventListScreen.
Implementation
const EventListScreen({
required this.date,
required this.events,
this.templateId, // Make it nullable or handle if it's always required
super.key,
});