FileSystemOpfsWebShowOpenFilePickerOptions constructor

const FileSystemOpfsWebShowOpenFilePickerOptions({
  1. String? id,
  2. Object? startIn,
  3. bool? multiple,
  4. bool? excludeAcceptAllOption,
  5. List<FileSystemOpfsWebFilePickerAcceptType>? types,
})

Options for window.showOpenFilePicker().

Implementation

const FileSystemOpfsWebShowOpenFilePickerOptions({
  super.id,
  super.startIn,
  this.multiple,
  this.excludeAcceptAllOption,
  this.types,
});