TimeSlotSelectorStyle constructor

TimeSlotSelectorStyle({
  1. TextStyle? titleStyle,
  2. TextStyle? slotTextStyle,
  3. Color? slotBackgroundColor,
  4. Color? selectedSlotBackgroundColor,
  5. TextStyle? selectedSlotTextStyle,
  6. double? width,
  7. double? height,
  8. Color? background,
  9. BoxBorder? border,
  10. double? borderRadius,
  11. Gradient? gradient,
})

Implementation

TimeSlotSelectorStyle({
  this.titleStyle,
  this.slotTextStyle,
  this.slotBackgroundColor,
  this.selectedSlotBackgroundColor,
  this.selectedSlotTextStyle,
  super.width,
  super.height,
  super.background,
  super.border,
  super.borderRadius,
  super.gradient,
});