screenshotWithBlur method

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

Always enables blur overlay mode (idempotent — safe to call repeatedly).

Implementation

@override
Future<bool> screenshotWithBlur({double blurRadius = 30.0}) async {
  _enableProtection();
  return true;
}