showAll method

void showAll([
  1. UIPopupMenu? ignorePopup
])

Implementation

void showAll([UIPopupMenu? ignorePopup]) {
  for (var p in _popups) {
    if (p != ignorePopup) {
      p.show();
    }
  }
}