FlutterTimeSlotPicker constructor

FlutterTimeSlotPicker({
  1. Key? key,
  2. double height = 150,
  3. DateTime? initialTime,
  4. DateTime? startTime,
  5. DateTime? endTime,
  6. required List<String> bookedSlots,
  7. OnSlotChange? onSlotChange,
  8. Widget? bookedSlotBackground,
})

Implementation

FlutterTimeSlotPicker({
  super.key,
  this.height = 150,
  this.initialTime,
  this.startTime,
  this.endTime,
  required this.bookedSlots,
  this.onSlotChange,
  this.bookedSlotBackground,
});