FilePathSelector constructor

const FilePathSelector({
  1. Key? key,
  2. required String title,
  3. String? initialFilePath,
  4. List<String>? recentFiles,
  5. required ValueChanged<String> onLoad,
})

Implementation

const FilePathSelector({
  super.key,
  required this.title,
  this.initialFilePath,
  this.recentFiles,
  required this.onLoad,
});