ShowFileChooserRequest constructor

ShowFileChooserRequest({
  1. required List<String> acceptTypes,
  2. String? filenameHint,
  3. required bool isCaptureEnabled,
  4. required ShowFileChooserRequestMode mode,
  5. String? title,
})

Implementation

ShowFileChooserRequest({
  required this.acceptTypes,
  this.filenameHint,
  required this.isCaptureEnabled,
  required this.mode,
  this.title,
});