RandomColorWheel constructor

RandomColorWheel({
  1. Key? key,
  2. required List<Color> colors,
  3. double size = 25,
  4. required VoidCallback? onPressed,
  5. Duration duration = const Duration(milliseconds: 500),
  6. bool waitForAnimation = true,
  7. required RandomColorWheelController controller,
})

Implementation

RandomColorWheel({
  super.key,
  required this.colors,
  this.size = 25,
  required this.onPressed,
  this.duration = const Duration(milliseconds: 500),
  this.waitForAnimation = true,
  required this.controller,
});