AiutaImagePickerFeature constructor
AiutaImagePickerFeature({
- AiutaImagePickerCameraFeature? camera,
- required AiutaImagePickerPhotoGalleryFeature photoGallery,
- AiutaImagePickerPredefinedModelFeature? predefinedModels,
- AiutaImagePickerUploadsHistoryFeature? uploadsHistory,
- required AiutaImagePickerImages images,
- 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,
});