FCalendarEntryStyle constructor

FCalendarEntryStyle({
  1. required FWidgetStateMap<Color> backgroundColor,
  2. required FWidgetStateMap<Color?> borderColor,
  3. required FWidgetStateMap<TextStyle> textStyle,
  4. required Radius radius,
})

Creates a FCalendarEntryStyle.

Implementation

FCalendarEntryStyle({
  required this.backgroundColor,
  required this.borderColor,
  required this.textStyle,
  required this.radius,
});