SimpleCalendarWithEvents constructor
const
SimpleCalendarWithEvents({
- Key? key,
- required int startYear,
- required int endYear,
- required List<
Map< eventsList,String, dynamic> > - required dynamic onEventTap(),
- required bool displayGregorianCalender,
- required String userLanguage,
- required Color borderColor,
- required Color todaysDateColor,
- Color? headerBackgroundColor,
- Color? headerTextColor,
Implementation
const SimpleCalendarWithEvents({
Key? key,
required this.startYear,
required this.endYear,
required this.eventsList,
required this.onEventTap,
required this.displayGregorianCalender,
required this.userLanguage,
required this.borderColor,
required this.todaysDateColor,
this.headerBackgroundColor,
this.headerTextColor,
this.monthNavigationColor,
}) : super(key: key);