SimpleCalendarWithEvents constructor

const SimpleCalendarWithEvents({
  1. Key? key,
  2. required int startYear,
  3. required int endYear,
  4. required List<Map<String, dynamic>> eventsList,
  5. required dynamic onEventTap(
    1. String
    ),
  6. required bool displayGregorianCalender,
  7. required String userLanguage,
  8. required Color borderColor,
  9. required Color todaysDateColor,
  10. Color? headerBackgroundColor,
  11. Color? headerTextColor,
  12. Color? monthNavigationColor,
})

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);