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