FilePicker constructor

const FilePicker({
  1. Key? key,
  2. Widget? title,
  3. Widget? subtitle,
  4. bool hotDropEnabled = false,
  5. bool hotDropping = false,
  6. VoidCallback? onAdd,
  7. required List<Widget> children,
})

Implementation

const FilePicker({
  super.key,
  this.title,
  this.subtitle,
  this.hotDropEnabled = false,
  this.hotDropping = false,
  this.onAdd,
  required this.children,
});