HSVPicker constructor

const HSVPicker({
  1. required HSVColor color,
  2. required ValueChanged<HSVColor> onChanged,
  3. Key? key,
})

Implementation

const HSVPicker({
  required this.color,
  required this.onChanged,
  Key? key,
}) : super(key: key);