OpenGalleryScreen constructor

const OpenGalleryScreen({
  1. Key? key,
  2. required Color openGalleryBackground,
  3. required int initialIndex,
  4. required List<String> imageUrls,
  5. Widget? openGalleryBackButtonIcon,
  6. Color? fallbackColor,
  7. Widget? fallbackImage,
  8. required Color dotColor,
})

Implementation

const OpenGalleryScreen({
  super.key,
  required this.openGalleryBackground,
  required this.initialIndex,
  required this.imageUrls,
  this.openGalleryBackButtonIcon,
  this.fallbackColor,
  this.fallbackImage,
  required this.dotColor
});