FilePickerComponent constructor

const FilePickerComponent({
  1. required ValueChanged<List<FileData>> onFilesChanged,
  2. Key? key,
  3. List<FileData> initialFiles = const <FileData>[],
  4. bool allowMultipleSelection = true,
})

Implementation

const FilePickerComponent({
  required this.onFilesChanged,
  super.key,
  this.initialFiles = const <FileData>[],
  this.allowMultipleSelection = true,
});