notificationOptions top-level property

Map<String, NotificationOption> notificationOptions
getter/setter pair

A map containing details about various notification subscriptions.

Implementation

Map<String, NotificationOption> notificationOptions = {
  'eventNotification': NotificationOption(
    title: t.notifications.event,
    subtitle: t.notifications.eventSub,
    icon: Icons.calendar_today,
  ),
  'postNotification': NotificationOption(
    title: t.notifications.post,
    subtitle: t.notifications.postSub,
    icon: Icons.local_activity,
  ),
  'tagNotification': NotificationOption(
    title: t.notifications.tag,
    subtitle: t.notifications.tagSub,
    icon: Icons.alternate_email,
  ),
  'reminderNotification': NotificationOption(
    title: t.notifications.reminder,
    subtitle: t.notifications.reminderSub,
    icon: Icons.alarm_on_rounded,
  ),
};