createPlatformInAppBrowser method

  1. @override
AndroidInAppBrowser createPlatformInAppBrowser(
  1. PlatformInAppBrowserCreationParams params
)

Creates a new AndroidInAppBrowser.

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

Implementation

@override
AndroidInAppBrowser createPlatformInAppBrowser(
  PlatformInAppBrowserCreationParams params,
) {
  return AndroidInAppBrowser(params);
}