FCalendarEntryStyle constructor

FCalendarEntryStyle({
  1. required Color backgroundColor,
  2. required TextStyle textStyle,
  3. required Color focusedBorderColor,
  4. required Radius radius,
  5. Color? hoveredBackgroundColor,
  6. TextStyle? hoveredTextStyle,
})

Creates a FCalendarEntryStyle.

Implementation

FCalendarEntryStyle({
  required this.backgroundColor,
  required this.textStyle,
  required this.focusedBorderColor,
  required this.radius,
  Color? hoveredBackgroundColor,
  TextStyle? hoveredTextStyle,
})  : hoveredBackgroundColor = hoveredBackgroundColor ?? backgroundColor,
      hoveredTextStyle = hoveredTextStyle ?? textStyle;