priorityInt property

int? priorityInt

Retrieves the priority as a numeric value between 1 (highest) and 9 (lowest) priority.

Implementation

int? get priorityInt =>
    getProperty<PriorityProperty>(PriorityProperty.propertyName)?.intValue;
void priorityInt=(int? value)

Sets the priority as a numeric value

Implementation

set priorityInt(int? value) => setOrRemoveProperty(
    PriorityProperty.propertyName, PriorityProperty.createNumeric(value));