CustomDraggable constructor
const
CustomDraggable({})
Constructor for the CustomDraggable class Takes the initial X and Y positions, the child widget, and optionally the width and height of the widget
Implementation
const CustomDraggable({
super.key,
required this.initialX,
required this.initialY,
required this.child,
this.width = 100.0,
this.height = 150.0,
});