requestPointerUnlock method

  1. @SupportedPlatforms.new(platforms: [LinuxPlatform()])
Future<bool> requestPointerUnlock()
inherited

Releases the pointer lock for the WebView. Returns true if the unlock was successful, false otherwise.

Implementation

@SupportedPlatforms(platforms: [LinuxPlatform()])
Future<bool> requestPointerUnlock() {
  throw UnimplementedError(
    '${PlatformInAppWebViewControllerMethod.requestPointerUnlock.name} is not implemented on the current platform',
  );
}