FileComponent constructor

const FileComponent({
  1. Key? key,
  2. required ComponentModel component,
  3. required List<FileData> value,
  4. required OnFileChanged onChanged,
  5. FilePickerCallback? onFilePick,
})

Implementation

const FileComponent({
  super.key,
  required this.component,
  required this.value,
  required this.onChanged,
  this.onFilePick,
});