GSMultiImagePickerModel constructor

GSMultiImagePickerModel(
  1. {dynamic type,
  2. dynamic tag,
  3. dynamic title,
  4. dynamic errorMessage,
  5. dynamic helpMessage,
  6. dynamic required,
  7. dynamic status,
  8. dynamic weight,
  9. dynamic showTitle,
  10. required Widget iconWidget,
  11. double? maximumImageCount,
  12. VoidCallback? onErrorSizeItem,
  13. double? maximumSizePerImageInKB,
  14. List<String>? defaultImagePath,
  15. String? cameraPopupIcon,
  16. String? galleryPopupIcon,
  17. bool? showCropper,
  18. String? cameraPopupTitle,
  19. String? galleryPopupTitle,
  20. GSImageSource? imageSource,
  21. String? hint}
)

Implementation

GSMultiImagePickerModel({
  type,
  tag,
  title,
  errorMessage,
  helpMessage,
  required,
  status,
  weight,
  showTitle,
  required this.iconWidget,
  this.maximumImageCount,
  this.onErrorSizeItem,
  this.maximumSizePerImageInKB,
  this.defaultImagePath,
  this.cameraPopupIcon,
  this.galleryPopupIcon,
  this.showCropper,
  this.cameraPopupTitle,
  this.galleryPopupTitle,
  this.imageSource,
  this.hint,
}) : super(
        type: type,
        tag: tag,
        title: title,
        errorMessage: errorMessage,
        helpMessage: helpMessage,
        required: required,
        status: status,
        weight: weight,
        showTitle: showTitle,
      );