FileDropArea constructor

const FileDropArea({
  1. Key? key,
  2. required FileDropCallback onFileDrop,
  3. required Widget child,
  4. bool multiple = true,
  5. FileDropOverlayBuilder? overlayBuilder,
  6. ValueChanged<bool>? onDraggingChanged,
})

Implementation

const FileDropArea({
  super.key,
  required this.onFileDrop,
  required this.child,
  this.multiple = true,
  this.overlayBuilder,
  this.onDraggingChanged,
});