show method

PopupMenuButton show(
  1. StateMVC<StatefulWidget> state, {
  2. String? applicationName,
})

Display the popup menu. Passed in a 'State' object and the Application's very name.

Implementation

PopupMenuButton<dynamic> show(StateMVC state, {String? applicationName}) =>
    _appMenu.show(
      state,
      applicationName: applicationName,
      menu: this,
    );