PhotoViewWidget constructor

const PhotoViewWidget({
  1. required List images,
  2. required int index,
  3. required bool? showControls,
})

images are the images will be shown index is the position of the initial image to show firstly

Implementation

const PhotoViewWidget({
  required this.images,
  required this.index,
  required this.showControls,
});