UIImagePreview constructor

const UIImagePreview({
  1. Key? key,
  2. required List<String> images,
  3. int forcusIndex = 0,
  4. String? heroTag,
  5. EdgeInsetsGeometry? imagePadding,
  6. dynamic onDownload(
    1. String url
    )?,
})

Implementation

const UIImagePreview({
  super.key,
  required this.images,
  this.forcusIndex = 0,
  this.heroTag,
  this.imagePadding,
  this.onDownload,
});