SfCalendarTheme constructor

const SfCalendarTheme({
  1. required SfCalendarThemeData data,
  2. required Widget child,
  3. Key? key,
})

Constructor for the calendar theme class, which applies a theme to descendant Syncfusion calendar widgets.

Implementation

const SfCalendarTheme({required this.data, required this.child, super.key})
  : super(child: child);