priority property

int? priority

Implementation

int? get priority {
  var priority = getChild('priority');

  return priority == null || priority.textValue == null ? null : int.tryParse(priority.textValue!);
}
void priority=(int? value)

Implementation

set priority(int? value) {
  _setChildValue('priority', value.toString());
}