WebDropTarget constructor

const WebDropTarget({
  1. Key? key,
  2. required Widget child,
  3. void onFileDropped(
    1. List<int> bytes,
    2. String fileName,
    3. String extension
    )?,
})

Implementation

const WebDropTarget({
  super.key,
  required this.child,
  this.onFileDropped,
});