priority property

int? get priority

Priority ranges from -2 to 2. -2 is lowest priority. 2 is highest. Zero is default. On platforms that don't support a notification center (Windows, Linux & Mac), -2 and -1 result in an error as notifications with those priorities will not be shown at all.

Implementation

int? get priority => _wrapped.priority;
set priority (int? v)

Implementation

set priority(int? v) {
  _wrapped.priority = v;
}