priority property
int?
get
priority
Implementation
int? get priority {
var priority = getChild('priority');
return priority == null || priority.textValue == null ? null : int.tryParse(priority.textValue!);
}
set
priority
(int? value)
Implementation
set priority(int? value) {
_setChildValue('priority', value.toString());
}