PlatformInAppLocalhostServer constructor

PlatformInAppLocalhostServer(
  1. PlatformInAppLocalhostServerCreationParams params
)

Creates a new PlatformInAppLocalhostServer

Implementation

factory PlatformInAppLocalhostServer(
  PlatformInAppLocalhostServerCreationParams params,
) {
  assert(
    InAppWebViewPlatform.instance != null,
    'A platform implementation for `flutter_inappwebview_forge` has not been set. Please '
    'ensure that an implementation of `InAppWebViewPlatform` has been set to '
    '`WebViewPlatform.instance` before use. For unit testing, '
    '`WebViewPlatform.instance` can be set with your own test implementation.',
  );
  final PlatformInAppLocalhostServer inAppLocalhostServer =
      InAppWebViewPlatform.instance!.createPlatformInAppLocalhostServer(
        params,
      );
  PlatformInterface.verify(inAppLocalhostServer, _token);
  return inAppLocalhostServer;
}