createPlatformWebNotificationController method

PlatformWebNotificationController createPlatformWebNotificationController(
  1. PlatformWebNotificationControllerCreationParams params
)

Creates a new PlatformWebNotificationController.

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

Implementation

PlatformWebNotificationController createPlatformWebNotificationController(
  PlatformWebNotificationControllerCreationParams params,
) {
  throw UnimplementedError(
    'createPlatformWebNotificationController is not implemented on the current platform.',
  );
}