PlatformWebViewWidget constructor

PlatformWebViewWidget(
  1. PlatformWebViewWidgetCreationParams params
)

Creates a new PlatformWebViewWidget

Implementation

factory PlatformWebViewWidget(PlatformWebViewWidgetCreationParams params) {
  final PlatformWebViewWidget webViewWidgetDelegate =
      WebViewPlatform.instance!.createPlatformWebViewWidget(params);
  PlatformInterface.verify(webViewWidgetDelegate, _token);
  return webViewWidgetDelegate;
}