ImageUploader constructor

ImageUploader({
  1. Key? key,
  2. required dynamic upload(
    1. List<XFile> images
    ),
  3. Widget? child,
  4. int imageQuality = 80,
})

Implementation

ImageUploader({
  super.key,
  required this.upload,
  this.child,
  this.imageQuality = 80,
});