PhotoGalleyScreen constructor
PhotoGalleyScreen({
- Key? key,
- required List<
ImageProvider< photos,Object> > - int initialIndex = 0,
- dynamic closeFunc()?,
Implementation
PhotoGalleyScreen(
{Key? key, required this.photos, int initialIndex = 0, this.closeFunc})
: super(key: key) {
_pageController = PageController(initialPage: initialIndex);
page.value = initialIndex;
}