orderFirst method

void orderFirst(
  1. 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);
  }
}