BZPreviewView constructor

BZPreviewView({
  1. Key? key,
  2. required List<String> imageUrls,
  3. required PageController pageController,
  4. String? heroTagPrefix,
})

Implementation

BZPreviewView({
  super.key,
  required this.imageUrls,
  required this.pageController,
  this.heroTagPrefix,
}) {
  pageController.addListener(_pageChangeListener);
}