onScreenCaptureStarting method
FutureOr<ScreenCaptureStartingResponse?> ?
onScreenCaptureStarting(
- ScreenCaptureStartingRequest request
inherited
Event fired when screen capture is starting.
Officially Supported Platforms/Implementations:
- Windows WebView2 (Official API - ICoreWebView2_27.add_ScreenCaptureStarting)
Parameters - Officially Supported Platforms/Implementations:
request: all platforms
Use the PlatformInAppBrowserEvents.isMethodSupported method to check if this method is supported at runtime.
Implementation
@override
FutureOr<ScreenCaptureStartingResponse?>? onScreenCaptureStarting(
ScreenCaptureStartingRequest request,
) {
return null;
}