CDKPickerSliderChroma constructor

const CDKPickerSliderChroma({
  1. Key? key,
  2. required double staturation,
  3. required double brightness,
  4. bool enabled = true,
  5. required Color hueColor,
  6. dynamic onChanged(
    1. double,
    2. double
    )?,
})

Implementation

const CDKPickerSliderChroma({
  Key? key,
  required this.staturation,
  required this.brightness,
  this.enabled = true,
  required this.hueColor,
  this.onChanged,
}) : super(key: key);