ColorPickerLabel constructor

const ColorPickerLabel(
  1. HSVColor hsvColor, {
  2. Key? key,
  3. bool enableAlpha = true,
  4. TextStyle? textStyle,
  5. bool editable = false,
  6. ValueChanged<HSVColor>? onColorChanged,
})

Implementation

const ColorPickerLabel(
  this.hsvColor, {
  Key? key,
  this.enableAlpha = true,
  this.textStyle,
  this.editable = false, // TODO: TBD
  this.onColorChanged, // TODO: TBD
}) : super(key: key);