PriorityProperty constructor

PriorityProperty(
  1. int priority
)

Implementation

PriorityProperty(int priority)
    : assert(
        priority >= 0 && priority <= 9,
        "Priority must be a positive integer between 0 and 9",
      ),
      super(
        "PRIORITY",
        IntegerValue(priority),
      );