SaveFilePickerOptionsWithMacOS constructor

SaveFilePickerOptionsWithMacOS({
  1. String nameFieldLabel = '',
  2. String nameFieldStringValue = 'file',
  3. List<String> tagNames = const <String>[],
  4. bool canSelectHiddenExtension = true,
  5. bool showsTagField = true,
  6. bool isExtensionHidden = true,
  7. bool canCreateDirectories = true,
  8. bool isModal = true,
  9. List<String>? allowedFileTypes,
  10. String directoryURL = '',
  11. String prompt = 'prompt',
  12. String title = 'title',
  13. String message = 'message',
})

Implementation

SaveFilePickerOptionsWithMacOS(
    {this.nameFieldLabel = '',
    this.nameFieldStringValue = 'file',
    this.tagNames = const <String>[],
    this.canSelectHiddenExtension = true,
    this.showsTagField = true,
    this.isExtensionHidden = true,
    this.canCreateDirectories = true,
    this.isModal = true,
    this.allowedFileTypes,
    this.directoryURL = '',
    this.prompt = 'prompt',
    this.title = 'title',
    this.message = 'message'});