addMenuItems method

  1. @override
void addMenuItems(
  1. List<InAppBrowserMenuItem> menuItems
)

Adds a list of InAppBrowserMenuItem to the menu. If the browser is already open, it will take effect the next time it is opened.

Officially Supported Platforms/Implementations:

  • Android
  • iOS 14.0+
  • macOS 10.15+

Implementation

@override
void addMenuItems(List<InAppBrowserMenuItem> menuItems) {
  menuItems.forEach((menuItem) {
    _menuItems[menuItem.id] = menuItem;
  });
}