ImagesPreview constructor

const ImagesPreview({
  1. Key? key,
  2. double previewHeight = _defaultPreviewHeight,
  3. double previewWidth = _defaultPreviewWidth,
  4. Color iconColor = Colors.white,
  5. Color borderColor = Colors.white,
  6. dynamic onDelete(
    1. int index
    )?,
  7. required List<XFile> files,
})

Implementation

const ImagesPreview({
  Key? key,
  this.previewHeight = _defaultPreviewHeight,
  this.previewWidth = _defaultPreviewWidth,
  this.iconColor = Colors.white,
  this.borderColor = Colors.white,
  this.onDelete,
  required this.files,
}) : super(key: key);