FreeRotateSlider constructor

const FreeRotateSlider({
  1. Key? key,
  2. required ValueChanged<double> onAngleChanged,
  3. double initialAngle = 0.0,
})

Implementation

const FreeRotateSlider({
  super.key,
  required this.onAngleChanged,
  this.initialAngle = 0.0,
});