UImageViewer constructor

const UImageViewer({
  1. required FileData fileData,
  2. Key? key,
  3. String? heroTag,
  4. double minScale = 0.8,
  5. double maxScale = 4.0,
  6. Color backgroundColor = Colors.black,
})

Implementation

const UImageViewer({
  required this.fileData,
  super.key,
  this.heroTag,
  this.minScale = 0.8,
  this.maxScale = 4.0,
  this.backgroundColor = Colors.black,
});