GalleryImageViewWrapper constructor

const GalleryImageViewWrapper({
  1. Key? key,
  2. LoadingBuilder? loadingBuilder,
  3. String? titleGallery,
  4. BoxDecoration? backgroundDecoration,
  5. required int initialIndex,
  6. required List<GalleryItemModel> galleryItems,
  7. Axis scrollDirection = Axis.horizontal,
  8. required Icon iconBack,
  9. required BoxFit fit,
  10. required bool loop,
  11. required bool activeCarouselList,
})

Implementation

const GalleryImageViewWrapper({
  Key? key,
  this.loadingBuilder,
  this.titleGallery,
  this.backgroundDecoration,
  required this.initialIndex,
  required this.galleryItems,
  this.scrollDirection = Axis.horizontal,
  required this.iconBack,
  required this.fit,
  required this.loop,
  required this.activeCarouselList,
}) : super(key: key);