CircleColorPicker constructor

const CircleColorPicker({
  1. Key? key,
  2. double radius = 120,
  3. Color initialColor = const Color(0xffff0000),
  4. Color thumbColor = Colors.black,
  5. double thumbRadius = 8,
  6. required ColorListener colorListener,
})

Implementation

const CircleColorPicker({
  super.key,
  this.radius = 120,
  this.initialColor = const Color(0xffff0000),
  this.thumbColor = Colors.black,
  this.thumbRadius = 8,
  required this.colorListener,
});