DraggableWidget constructor

const DraggableWidget({
  1. Key? key,
  2. required Widget child,
  3. ValueChanged<SliderDirection>? onSliderOut,
  4. required bool isEnableDrag,
  5. VoidCallback? onPresed,
})

Implementation

const DraggableWidget(
    {super.key,
    required this.child,
    this.onSliderOut,
    required this.isEnableDrag,
    this.onPresed});