show method

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

Implementation

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