priority property

int get priority

This paint's order among its siblings. Defaults to 0.

Implementation

int get priority => _priority;
set priority (int value)

Implementation

set priority(int value) {
  _priority = value;
  _palette?._reposition(this);
}