toggleScreenshotWithBlur method

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

Implementation

@override
Future<bool> toggleScreenshotWithBlur({double blurRadius = 30.0}) async {
  _isProtectionOn ? _disableProtection() : _enableProtection();
  return _isProtectionOn;
}