ColorSelector constructor

ColorSelector({
  1. required String label,
  2. TextStyle? labelStyle,
  3. required List<Color> colors,
  4. ValueChanged<Color>? onChanged,
})

Implementation

ColorSelector({
  required this.label,
  this.labelStyle,
  required this.colors,
  this.onChanged,
});