disableScreenCapture method

Future<void> disableScreenCapture()

android 禁用系统锁屏

Implementation

Future<void> disableScreenCapture() async {
  exec(
      androidCall: () {
        _channel.invokeMethod('disableScreenCapture');
      },
      iosCall: () {});
}