removeMenuItems method

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

Removes a list of menuItems from the list. 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 removeMenuItems(List<InAppBrowserMenuItem> menuItems) {
  for (final menuItem in menuItems) {
    removeMenuItem(menuItem);
  }
}