emergencyAlarm top-level constant

NotificationType const emergencyAlarm

Implementation

const emergencyAlarm = NotificationType(
  /* 0x0A */ NOTIFICATION_TYPE_EMERGENCY_ALARM, 'Emergency Alarm', //
  [
    NotificationValue(0, 'State idle' //
        // Notification value for the state variable going to idle. (V5)
        ),
    NotificationValue(1, 'Contact police'),
    NotificationValue(2, 'Contact fire service'),
    NotificationValue(3, 'Contact medical service'),
    NotificationValue(4, 'Panic alert' //
        // This event is used to indicate that a panic/emergency situation occured
        ),
    /* NotificationValue(254, Unknown event/state) */
  ],
);