ImagePreviewPopup constructor

const ImagePreviewPopup({
  1. Key? key,
  2. required File image,
  3. bool fromCamera = false,
})

Implementation

const ImagePreviewPopup({
  super.key,
  required this.image,
  this.fromCamera = false,
});