createPlatformServiceWorkerController method

PlatformServiceWorkerController createPlatformServiceWorkerController(
  1. PlatformServiceWorkerControllerCreationParams params
)

Creates a new PlatformServiceWorkerController.

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

Implementation

PlatformServiceWorkerController createPlatformServiceWorkerController(
  PlatformServiceWorkerControllerCreationParams params,
) {
  throw UnimplementedError(
    'createPlatformServiceWorkerController is not implemented on the current platform.',
  );
}