onSaveAsUIShowing method

  1. @override
FutureOr<SaveAsUIShowingResponse?>? onSaveAsUIShowing(
  1. SaveAsUIShowingRequest request
)
inherited

Event fired when Save As UI is showing.

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<SaveAsUIShowingResponse?>? onSaveAsUIShowing(
  SaveAsUIShowingRequest request,
) {
  return null;
}