DayBoxStyle constructor

const DayBoxStyle(
  1. {BoxShape shape = BoxShape.rectangle,
  2. EdgeInsets padding = const EdgeInsets.all(6),
  3. double? landscapeWidthRatio,
  4. Color? selectedBackground,
  5. Color? unselectedBackground,
  6. TextStyle? selectedTextStyle,
  7. TextStyle? unselectedTextStyle,
  8. TextStyle? unselectedSaturdayTextStyle,
  9. TextStyle? unselectedHolidayTextStyle}
)

Assign style data of DayBox

Implementation

const DayBoxStyle(
    {this.shape = BoxShape.rectangle,
    this.padding = const EdgeInsets.all(6),
    this.landscapeWidthRatio,
    this.selectedBackground,
    this.unselectedBackground,
    this.selectedTextStyle,
    this.unselectedTextStyle,
    this.unselectedSaturdayTextStyle,
    this.unselectedHolidayTextStyle});