XTextFieldFileOptions constructor

const XTextFieldFileOptions({
  1. String filePickerTitle = 'Select File',
  2. String filePickerCameraText = 'Take from Camera',
  3. String filePickerGalleryText = 'Choose from Gallery',
  4. String filePickerDocumentText = 'Pick a Document',
  5. bool showCamera = true,
  6. bool showGallery = true,
  7. bool showDocument = true,
})

Implementation

const XTextFieldFileOptions({
  this.filePickerTitle = 'Select File',
  this.filePickerCameraText = 'Take from Camera',
  this.filePickerGalleryText = 'Choose from Gallery',
  this.filePickerDocumentText = 'Pick a Document',
  this.showCamera = true,
  this.showGallery = true,
  this.showDocument = true,
});