PlatformWebNotificationControllerCreationParams constructor

const PlatformWebNotificationControllerCreationParams({
  1. required String id,
  2. required WebNotification notification,
})

Used by the platform implementation to create a new PlatformWebNotificationController.

Implementation

const PlatformWebNotificationControllerCreationParams({
  required this.id,
  required this.notification,
});