KntGalleryView constructor

const KntGalleryView({
  1. Key? key,
  2. List<Photo> photos = const [],
  3. int? initIndex,
  4. Color? backgroundColor,
  5. Widget? closeButton,
  6. double? scrollOffsetToLoadMore,
})

Implementation

const KntGalleryView({
  super.key,
  this.photos = const [],
  this.initIndex,
  this.backgroundColor,
  this.closeButton,
  this.scrollOffsetToLoadMore,
});