LitDraggable constructor

const LitDraggable({
  1. Key? key,
  2. required Widget child,
  3. Offset initialDragOffset = const Offset(0.0, 0.0),
})

Implementation

const LitDraggable({
  Key? key,
  required this.child,
  this.initialDragOffset = const Offset(0.0, 0.0),
}) : super(key: key);