WidgetImagesViewer constructor

const WidgetImagesViewer({
  1. Key? key,
  2. bool isImageProvider = false,
  3. required List images,
  4. int index = 0,
  5. dynamic onClose()?,
  6. ValueChanged? onDownload,
  7. Color? backgroundColor,
  8. Color? textColor,
  9. List<Future<int>>? fileSizes,
  10. List<String>? imageUrls,
  11. List<Widget Function(String, Widget)>? imageUrlWrapCopiables,
  12. Color? hoverColor,
})

Implementation

const WidgetImagesViewer({
  super.key,
  this.isImageProvider = false,
  required this.images,
  this.index = 0,
  this.onClose,
  this.onDownload,
  this.backgroundColor,
  this.textColor,
  this.fileSizes,
  this.imageUrls,
  this.imageUrlWrapCopiables,
  this.hoverColor,
});