requestExitFullscreen method
- @SupportedPlatforms.new(platforms: [LinuxPlatform()])
Requests the WebView to exit fullscreen mode. This dispatches an exit fullscreen request to the WPE backend.
Officially Supported Platforms/Implementations:
- Linux WPE WebKit
Use the PlatformInAppWebViewController.isMethodSupported method to check if this method is supported at runtime.
Implementation
@SupportedPlatforms(platforms: [LinuxPlatform()])
Future<void> requestExitFullscreen() {
throw UnimplementedError(
'${PlatformInAppWebViewControllerMethod.requestExitFullscreen.name} is not implemented on the current platform',
);
}