CustomDropTarget constructor

const CustomDropTarget({
  1. Key? key,
  2. Future<void> onPerformDrop(
    1. PerformDropEvent
    )?,
  3. void onDropEnter(
    1. DropEvent
    )?,
  4. void onDropLeave(
    1. DropEvent
    )?,
  5. required Widget builder(
    1. bool
    ),
})

Implementation

const CustomDropTarget({
  super.key,
  this.onPerformDrop,
  this.onDropEnter,
  this.onDropLeave,
  required this.builder,
});