FileChooserScreen constructor

FileChooserScreen({
  1. Key? key,
  2. required void onSelected(
    1. List<String> selectedPath
    ),
  3. List<String>? mimeTypes,
  4. String? title,
  5. String? initPath,
  6. String? thumbnailDirPath,
})

Implementation

FileChooserScreen({
  super.key,
  required this.onSelected,
  this.mimeTypes,
  this.title,
  this.initPath,
  this.thumbnailDirPath,
});