disableScreenCapture method

Future<void> disableScreenCapture()

Disables screen capture (screenshots and recordings) on supported platforms.

Must be implemented by platform-specific subclasses.

Implementation

Future<void> disableScreenCapture() {
  throw UnimplementedError(
      'disableScreenCapture() has not been implemented.');
}