popMenu function

Future<bool> popMenu()

Pop the current menu.

Return true if the menu was popped, false if it was the last menu.

Implementation

Future<bool> popMenu() async {
  return menuManager.popMenu();
}