ReorderableWrapperWidget constructor

const ReorderableWrapperWidget({
  1. Key? key,
  2. required Widget child,
  3. required ReorderCallback onReorder,
  4. bool restrictDragScope = false,
  5. DragWidgetBuilderV2? dragWidgetBuilder,
  6. ScrollSpeedController? scrollSpeedController,
  7. PlaceholderBuilder? placeholderBuilder,
  8. ReorderableChildPosDelegate? posDelegate,
  9. OnDragStart? onDragStart,
  10. OnDragUpdate? onDragUpdate,
  11. bool? dragEnabled,
  12. Duration? dragStartDelay,
  13. bool? isSliver,
})

Implementation

const ReorderableWrapperWidget({
  Key? key,
  required this.child,
  required this.onReorder,
  this.restrictDragScope = false,
  this.dragWidgetBuilder,
  this.scrollSpeedController,
  this.placeholderBuilder,
  this.posDelegate,
  this.onDragStart,
  this.onDragUpdate,
  this.dragEnabled,
  this.dragStartDelay,
  this.isSliver,
}) : super(key: key);