toggleScreenshotWithBlur method

  1. @override
Future<bool> toggleScreenshotWithBlur({
  1. double blurRadius = 30.0,
})
override

Implementation

@override
Future<bool> toggleScreenshotWithBlur({double blurRadius = 30.0}) async {
  _isOverlayModeOn = !_isOverlayModeOn;
  _applyEffective();
  return _isOverlayModeOn;
}