DragAndDropListTarget constructor

DragAndDropListTarget({
  1. Widget? child,
  2. required DragAndDropBuilderParameters parameters,
  3. required OnDropOnLastTarget onDropOnLastTarget,
  4. double lastListTargetSize = 110,
  5. Key? key,
})

Implementation

DragAndDropListTarget(
    {this.child,
    required this.parameters,
    required this.onDropOnLastTarget,
    this.lastListTargetSize = 110,
    Key? key})
    : super(key: key);