PlatformServiceWorkerController constructor

PlatformServiceWorkerController(
  1. PlatformServiceWorkerControllerCreationParams params
)

Implementation

factory PlatformServiceWorkerController(
    PlatformServiceWorkerControllerCreationParams params) {
  assert(
    InAppWebViewPlatform.instance != null,
    'A platform implementation for `flutter_inappwebview` 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 PlatformServiceWorkerController serviceWorkerController =
      InAppWebViewPlatform.instance!
          .createPlatformServiceWorkerController(params);
  PlatformInterface.verify(serviceWorkerController, _token);
  return serviceWorkerController;
}