AiutaImagePickerFeature constructor

AiutaImagePickerFeature({
  1. AiutaImagePickerCameraFeature? camera,
  2. required AiutaImagePickerPhotoGalleryFeature photoGallery,
  3. AiutaImagePickerPredefinedModelFeature? predefinedModels,
  4. AiutaImagePickerUploadsHistoryFeature? uploadsHistory,
  5. required AiutaImagePickerImages images,
  6. required AiutaImagePickerStrings strings,
})

Creates an AiutaImagePickerFeature with the optional camera to allow users to take new pictures, a required photoGallery to select images from the device's gallery, an optional predefinedModels to select predefined models, an optional uploadsHistory to select one of the previously used images, and required images and strings configuration.

Implementation

AiutaImagePickerFeature({
  this.camera,
  required this.photoGallery,
  this.predefinedModels,
  this.uploadsHistory,
  required this.images,
  required this.strings,
});