FullScreenViewer constructor

const FullScreenViewer({
  1. required Widget child,
  2. required Object tag,
  3. required bool disableSwipeToDismiss,
  4. Key? key,
  5. Color backgroundColor = Colors.black,
  6. bool backgroundIsTransparent = true,
  7. DisposeLevel? disposeLevel = DisposeLevel.medium,
})

Implementation

const FullScreenViewer({
  required this.child,
  required this.tag,
  required this.disableSwipeToDismiss,
  super.key,
  this.backgroundColor = Colors.black,
  this.backgroundIsTransparent = true,
  this.disposeLevel = DisposeLevel.medium,
});