WheelPicker constructor

const WheelPicker({
  1. Key? key,
  2. required Colour currentColour,
  3. required ValueChanged<Colour> onColourChanged,
  4. required double size,
  5. required PickerStyle style,
  6. required bool showLabel,
  7. required bool displayThumbColor,
  8. required Orientation orientation,
  9. HSVColour? pickerHsvColour,
  10. ValueChanged<HSVColour>? onHsvColourChanged,
  11. List<Colour>? colourHistory,
  12. ValueChanged<List<Colour>>? onHistoryChanged,
})

Implementation

const WheelPicker({
  super.key,
  required this.currentColour,
  required this.onColourChanged,
  required this.size,
  required this.style,
  required this.showLabel,
  required this.displayThumbColor,
  required this.orientation,

  this.pickerHsvColour,
  this.onHsvColourChanged,
  this.colourHistory,
  this.onHistoryChanged,
});