NotificationModel constructor

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

Implementation

NotificationModel(
    {NotificationContent? content,
    NotificationSchedule? schedule,
    List<NotificationActionButton>? actionButtons})
    : _content = content,
      _schedule = schedule,
      _actionButtons = actionButtons;