InheritedCalendarStyle<T extends CalendarEvent> constructor

const InheritedCalendarStyle<T extends CalendarEvent>({
  1. Key? key,
  2. required CalendarStyle<T> style,
  3. required Widget child,
})

Implementation

const InheritedCalendarStyle({
  super.key,
  required this.style,
  required super.child,
});