FileDropArea constructor
const
FileDropArea({
- Key? key,
- required FileDropCallback onFileDrop,
- required Widget child,
- bool multiple = true,
- FileDropOverlayBuilder? overlayBuilder,
- ValueChanged<
bool> ? onDraggingChanged,
Implementation
const FileDropArea({
super.key,
required this.onFileDrop,
required this.child,
this.multiple = true,
this.overlayBuilder,
this.onDraggingChanged,
});