onScreenCaptureStarting method

  1. @override
FutureOr<ScreenCaptureStartingResponse?>? onScreenCaptureStarting(
  1. ScreenCaptureStartingRequest request
)
inherited

Event fired when screen capture is starting.

Officially Supported Platforms/Implementations:

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;
}