Slideshow constructor

const Slideshow({
  1. Key? key,
  2. required Widget whenFinished,
  3. required List<SlideshowPage> slideShowItems,
  4. required String stringForNext,
  5. Widget? loadingPage,
  6. bool listViewInsteadOfSlideshow = false,
  7. bool overrideAlwaysShowSlideshow = false,
  8. Duration animationDelay = const Duration(),
  9. Duration animationDuration = const Duration(seconds: 1),
  10. Curve animationCurve = Curves.ease,
})

Implementation

const Slideshow({
  Key? key,
  required this.whenFinished,
  required this.slideShowItems,
  required this.stringForNext,
  this.loadingPage,
  this.listViewInsteadOfSlideshow = false,
  this.overrideAlwaysShowSlideshow = false,
  this.animationDelay = const Duration(),
  this.animationDuration = const Duration(seconds: 1),
  this.animationCurve = Curves.ease,
}) : super(key: key);