ForbidshotWidget constructor

const ForbidshotWidget({
  1. Key? key,
  2. required Widget child,
  3. Widget? captureWidget,
  4. VoidCallback? onScreenShot,
  5. ValueChanged<bool>? onCapture,
})

Implementation

const ForbidshotWidget(
    {Key? key,
    required this.child,
    this.captureWidget,
    this.onScreenShot,
    this.onCapture})
    : super(key: key);