ImageSlideWidget constructor

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

Implementation

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