JoyStick constructor

const JoyStick({
  1. Key? key,
  2. required double radius,
  3. required double stickRadius,
  4. required Function callback,
  5. ValueChanged<int>? onPtzChanged,
})

Implementation

const JoyStick(
    {super.key,
    required this.radius,
    required this.stickRadius,
    required this.callback,
    this.onPtzChanged
    });