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