SLNotification constructor

SLNotification({
  1. required String title,
  2. required String content,
  3. required String iconPath,
  4. String? channelId = "simple_local_notifications_channel",
  5. String? channelName = "simple_local_notifications",
  6. SLNotificationPriority? priority = SLNotificationPriority.defaultPriority,
})

Implementation

SLNotification({
  required this.title,
  required this.content,
  required this.iconPath,
  this.channelId = "simple_local_notifications_channel",
  this.channelName = "simple_local_notifications",
  this.priority = SLNotificationPriority.defaultPriority,
});