ImageSlideShow constructor

const ImageSlideShow({
  1. Key? key,
  2. required Widget child,
  3. required String animationId,
  4. ScrollController? scrollController,
  5. Stack? overlayWidget,
  6. bool? initShowOverlay,
})

Implementation

const ImageSlideShow({
  super.key,
  required this.child,
  required this.animationId,
  this.scrollController,
  this.overlayWidget,
  this.initShowOverlay,
});