orderFirst method
- OverlayCall call
Moves the given call
to the end of the calls.
Implementation
void orderFirst(OverlayCall call) {
var index = calls.indexOf(call);
if (index != calls.length - 1) {
calls.removeAt(index);
calls.add(call);
}
}