createPlatformInAppBrowser method

PlatformInAppBrowser createPlatformInAppBrowser(
  1. PlatformInAppBrowserCreationParams params
)

Creates a new PlatformInAppBrowser.

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

Implementation

PlatformInAppBrowser createPlatformInAppBrowser(
  PlatformInAppBrowserCreationParams params,
) {
  throw UnimplementedError(
    'createPlatformInAppBrowser is not implemented on the current platform.',
  );
}