UploadImageView constructor

UploadImageView({
  1. Key? key,
  2. required String cameraReason,
  3. required String photoReason,
  4. required double width,
  5. required double height,
  6. required dynamic callbackImage(
    1. List<File> imageList
    ),
  7. required int maxlength,
  8. double? spacing,
  9. double? runSpacing,
  10. EdgeInsets? margin,
  11. EdgeInsets? padding,
})

Implementation

UploadImageView({
  super.key,
  required this.cameraReason,
  required this.photoReason,
  required this.width,
  required this.height,
  required this.callbackImage,
  required this.maxlength,
  this.spacing,
  this.runSpacing,
  this.margin,
  this.padding,
});