DropBoxArea<T extends Object> constructor

const DropBoxArea<T extends Object>({
  1. Key? key,
  2. Axis? axis,
  3. bool onWillAccept(
    1. T?
    )?,
  4. void onAccept(
    1. T
    )?,
  5. double size = 50,
  6. bool visible = true,
})

Implementation

const DropBoxArea({
  super.key,
  this.axis,
  this.onWillAccept,
  this.onAccept,
  this.size = 50,
  this.visible = true,
});