screenshotOff method

  1. @override
Future<bool> screenshotOff()

Implementation

@override
Future<bool> screenshotOff() async {
  final result = await methodChannel.invokeMethod<bool>(screenShotOffConst);
  return result ?? false;
}