GrockImageViewer constructor

const GrockImageViewer({
  1. Key? key,
  2. required Widget child,
  3. Color? backgroundColor = Colors.black,
  4. DisposeLevel? disposeLevel,
  5. double blurOpacity = 10.0,
  6. bool disableSwipeToDismiss = false,
  7. Widget? closeButton,
  8. List<Widget>? actions,
})

Implementation

const GrockImageViewer({
  Key? key,
  required this.child,
  this.backgroundColor = Colors.black,
  this.disposeLevel,
  this.blurOpacity = 10.0,
  this.disableSwipeToDismiss = false,
  this.closeButton,
  this.actions,
}) : super(key: key);