createPlatformInAppWebViewWidget method

PlatformInAppWebViewWidget createPlatformInAppWebViewWidget(
  1. PlatformInAppWebViewWidgetCreationParams params
)

Creates a new PlatformInAppWebViewWidget.

This function should only be called by the app-facing package. Look at using InAppWebView in flutter_inappwebview_forge instead.

Implementation

PlatformInAppWebViewWidget createPlatformInAppWebViewWidget(
  PlatformInAppWebViewWidgetCreationParams params,
) {
  throw UnimplementedError(
    'createPlatformInAppWebViewWidget is not implemented on the current platform.',
  );
}