NotificationPriority¶
enumNotificationPriority: Enum<NotificationPriority>
Defines the priority / visibility of the Android foreground-service notification.
This affects how the notification appears in the status bar and how strongly the OS ranks it among other notifications.
Mirrors Flutter’s NotificationPriority enum.
Members¶
DEFAULT¶
val DEFAULT:NotificationPriority
Default notification priority (normal weighting).
HIGH¶
val HIGH:NotificationPriority
Notification strongly weighted to top of list; icon strongly weighted to the left.
LOW¶
val LOW:NotificationPriority
Notification weighted to bottom of list; icon weighted to the right.
MAX¶
val MAX:NotificationPriority
Same as NotificationPriority.High.
MIN¶
val MIN:NotificationPriority
Notification strongly weighted to bottom of list; icon hidden.