toggleScreenshotWithBlur method

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

Implementation

@override
Future<bool> toggleScreenshotWithBlur({double blurRadius = 30.0}) async {
  final result = await methodChannel.invokeMethod<bool>(screenSetBlur, {
    'radius': blurRadius,
  });
  return result ?? false;
}