priority method
does this list have a special role? Highest = 1, SecondHighest = 2, Three = 3, Four = 4, Five = 5, Six = 6, Seven = 7, --- No value SecondLowest = 8, Lowest = 9,
Implementation
int? priority() {
var tmp0 = 0;
tmp0 = _box.borrow();
final tmp1 = _api._taskPriority(
tmp0,
);
final tmp3 = tmp1.arg0;
final tmp4 = tmp1.arg1;
if (tmp3 == 0) {
return null;
}
final tmp2 = tmp4;
return tmp2;
}