InAppWebView.fromPlatformCreationParams constructor

InAppWebView.fromPlatformCreationParams({
  1. Key? key,
  2. required PlatformInAppWebViewWidgetCreationParams params,
})

Constructs a InAppWebView.

See InAppWebView.fromPlatformCreationParams for setting parameters for a specific platform.

Implementation

InAppWebView.fromPlatformCreationParams({
  Key? key,
  required PlatformInAppWebViewWidgetCreationParams params,
}) : this.fromPlatform(
       key: key,
       platform: PlatformInAppWebViewWidget(params),
     );