turnOffScreenshots method

Future<void> turnOffScreenshots()

Method to disable screenshots on the device. Throws UnimplementedError if not overridden by a platform-specific implementation.

Implementation

Future<void> turnOffScreenshots() {
  throw UnimplementedError('Failed to turn off screenshots.');
}