FileScannerScreen constructor

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

Implementation

FileScannerScreen({
  super.key,
  required this.onSelected,
  required this.mimeType,
  this.title,
  this.thumbnailDirPath,
});