LinuxNotificationCategory enum
Categories of notifications.
Corresponds to https://specifications.freedesktop.org/notification-spec/notification-spec-latest.html#categories
Values
- device → const LinuxNotificationCategory
- 
  A generic device-related notification that doesn't fit into any other category. const LinuxNotificationCategory('device')
- deviceAdded → const LinuxNotificationCategory
- 
  A device, such as a USB device, was added to the system. const LinuxNotificationCategory('device.added')
- deviceError → const LinuxNotificationCategory
- 
  A device had some kind of error. const LinuxNotificationCategory('device.error')
- deviceRemoved → const LinuxNotificationCategory
- 
  A device, such as a USB device, was removed from the system. const LinuxNotificationCategory('device.removed')
- email → const LinuxNotificationCategory
- 
  A generic e-mail-related notification that doesn't fit into any other category. const LinuxNotificationCategory('email')
- emailArrived → const LinuxNotificationCategory
- 
  A new e-mail notification. const LinuxNotificationCategory('email.arrived')
- emailBounced → const LinuxNotificationCategory
- 
  A notification stating that an e-mail has bounced. const LinuxNotificationCategory('email.bounced')
- im → const LinuxNotificationCategory
- 
  A generic instant message-related notification that doesn't fit into any other const LinuxNotificationCategory('im')
- imError → const LinuxNotificationCategory
- 
  An instant message error notification. const LinuxNotificationCategory('im.error')
- imReceived → const LinuxNotificationCategory
- 
  A received instant message notification. const LinuxNotificationCategory('im.received')
- network → const LinuxNotificationCategory
- 
  A generic network notification that doesn't fit into any other category. const LinuxNotificationCategory('network')
- networkConnected → const LinuxNotificationCategory
- 
  A network connection notification, such as successful sign-on to a network service. This should not be confused with deviceAdded for new network devices. const LinuxNotificationCategory('network.connected')
- networkDisconnected → const LinuxNotificationCategory
- 
  A network disconnected notification. This should not be confused with deviceRemoved for disconnected network devices. const LinuxNotificationCategory('network.disconnected')
- networkError → const LinuxNotificationCategory
- 
  A network-related or connection-related error. const LinuxNotificationCategory('network.error')
- presence → const LinuxNotificationCategory
- 
  A generic presence change notification that doesn't fit into any other category, such as going away or idle. const LinuxNotificationCategory('presence')
- presenceOffile → const LinuxNotificationCategory
- 
  An offline presence change notification. const LinuxNotificationCategory('presence.offline')
- presenceOnline → const LinuxNotificationCategory
- 
  An online presence change notification. const LinuxNotificationCategory('presence.online')
- transfer → const LinuxNotificationCategory
- 
  A generic file transfer or download notification that doesn't fit into any other category. const LinuxNotificationCategory('transfer')
- transferComplete → const LinuxNotificationCategory
- 
  A file transfer or download complete notification. const LinuxNotificationCategory('transfer.complete')
- transferError → const LinuxNotificationCategory
- 
  A file transfer or download error. const LinuxNotificationCategory('transfer.error')
Properties
- hashCode → int
- 
  The hash code for this object.
  no setterinherited
- index → int
- 
  A numeric identifier for the enumerated value.
  no setterinherited
- name → String
- 
  Name of category.
  final
- name → String
- 
      Available on Enum, provided by the EnumName extension The name of the enum value.no setter
- runtimeType → Type
- 
  A representation of the runtime type of the object.
  no setterinherited
Methods
- 
  noSuchMethod(Invocation invocation) → dynamic 
- 
  Invoked when a nonexistent method or property is accessed.
  inherited
- 
  toString() → String 
- 
  A string representation of this object.
  inherited
Operators
- 
  operator ==(Object other) → bool 
- 
  The equality operator.
  inherited
Constants
- 
    values
  → const List<LinuxNotificationCategory> 
- A constant List of the values in this enum, in order of their declaration.