DragHandle constructor

const DragHandle({
  1. Key? key,
  2. required Widget child,
  3. bool onLeft = false,
  4. DragHandleVerticalAlignment verticalAlignment = DragHandleVerticalAlignment.center,
})

Implementation

const DragHandle({
  super.key,
  required this.child,
  this.onLeft = false,
  this.verticalAlignment = DragHandleVerticalAlignment.center,
});