NotificationEventInit constructor

NotificationEventInit({
  1. required Notification notification,
  2. String? action,
})

Implementation

factory NotificationEventInit(
        {required Notification notification, String? action}) =>
    NotificationEventInit._(notification: notification, action: action ?? '');