Is there any documented order of execution of PropertyChanges
instances?
For example, if there is a State
like,
State {
name: "LOADED"
PropertyChanges { target: elem1; width: 10 }
PropertyChanges { target: elem2; width: 10 }
}
is there any specific order which elements width will be setted first?