GalleryImageViewWrapper constructor

const GalleryImageViewWrapper({
  1. Key? key,
  2. required String? titleGallery,
  3. required Color? backgroundColor,
  4. required int? initialIndex,
  5. required List<GalleryItemModel> galleryItems,
  6. required Widget? loadingWidget,
  7. required Widget? errorWidget,
  8. required double minScale,
  9. required double maxScale,
  10. required double radius,
  11. required bool reverse,
  12. required bool showListInGalley,
  13. required bool showAppBar,
  14. required bool closeWhenSwipeUp,
  15. required bool closeWhenSwipeDown,
})

Implementation

const GalleryImageViewWrapper({
  Key? key,
  required this.titleGallery,
  required this.backgroundColor,
  required this.initialIndex,
  required this.galleryItems,
  required this.loadingWidget,
  required this.errorWidget,
  required this.minScale,
  required this.maxScale,
  required this.radius,
  required this.reverse,
  required this.showListInGalley,
  required this.showAppBar,
  required this.closeWhenSwipeUp,
  required this.closeWhenSwipeDown,
}) : super(key: key);