ImageViewer constructor

const ImageViewer({
  1. Key? key,
  2. required VideoEditorController controller,
  3. required Uint8List bytes,
  4. Widget? child,
  5. bool fadeIn = true,
})

Implementation

const ImageViewer({
  super.key,
  required this.controller,
  required this.bytes,
  this.child,
  this.fadeIn = true,
});