PushNotification constructor

PushNotification({
  1. required NotificationContent content,
  2. NotificationSchedule? schedule,
  3. List<NotificationActionButton>? actionButtons,
})

Implementation

PushNotification(
    {required NotificationContent content,
    NotificationSchedule? schedule,
    List<NotificationActionButton>? actionButtons})
    : super(
          content: content, schedule: schedule, actionButtons: actionButtons);