FilesystemListTile constructor

const FilesystemListTile({
  1. Key? key,
  2. FilesystemType fsType = FilesystemType.all,
  3. required FileSystemEntity item,
  4. Color? folderIconColor,
  5. required ValueChanged<Directory> onChange,
  6. required ValueSelected onSelect,
  7. required FileTileSelectMode fileTileSelectMode,
  8. FilesystemPickerFileListThemeData? theme,
  9. bool caseSensitiveFileExtensionComparison = false,
})

Creates a file system entity list tile.

Implementation

const FilesystemListTile({
  Key? key,
  this.fsType = FilesystemType.all,
  required this.item,
  this.folderIconColor,
  required this.onChange,
  required this.onSelect,
  required this.fileTileSelectMode,
  this.theme,
  this.caseSensitiveFileExtensionComparison = false,
}) : super(key: key);